input {
	outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

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

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

.nav-btn span {
	display: block;
}

button,
a {
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border: none;
	background: none;
	text-decoration: none;
}

button:hover,
a:hover {
	opacity: 0.7;
}

textarea {
	resize: vertical;
}

body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #343434;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-x: hidden;
}

.wrapper {
	max-width: 1315px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.main-header {
	padding-top: 16px;
	padding-bottom: 18px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 12px rgba(29, 25, 75, 0.05);
	box-shadow: 0px 4px 12px rgba(29, 25, 75, 0.05);
}

.main-header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.logo img {
	display: block;
	max-width: 100%;
}

.main-footer-content {
	background: #232C4B;
	padding-top: 40px;
	padding-bottom: 32px;
}

.main-footer-content .note {
	font-weight: normal;
	font-size: 12px;
	line-height: 150%;
	color: #FFFFFF;
	margin-top: 80px;
}

.main-footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.main-footer-menu .logo {
	margin-right: 111px;
}

.main-footer-menu .footer-col {
	margin-left: auto;
}

.footer-contacts span {
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #747E9F;
	margin-bottom: 8px;
}

.footer-contacts a {
	font-weight: 600;
	font-size: 24px;
	line-height: 33px;
	color: #FFFFFF;
}

.footer-contacts a:hover {
	opacity: 1;
	color: #56C68E;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu li:last-child {
	margin-bottom: 0;
}

.footer-menu li a, .footer-contacts.footer-col {
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	color: #FFFFFF;
}

.footer-menu li a:hover {
	opacity: 1;
	color: #56C68E;
}

.main-footer-copy {
	padding-top: 21px;
	padding-bottom: 18px;
	background: #1C2542;
}

.main-footer-copy span {
	font-weight: normal;
	font-size: 14px;
	line-height: 150%;
	color: #FFFFFF;
}

.form-section {
	padding-top: 55px;
	padding-bottom: 88px;
	background: #F0F4F9;
}

.form-section-cols {
	display: grid;
	grid-template-columns: 50% 50%;
}

.s-form {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border-radius: 12px 0px 0px 12px;
	padding: 40px 48px 56px 48px;
}

.s-form h2 {
	font-weight: bold;
	font-size: 28px;
	line-height: 120%;
	color: #32303F;
	margin-bottom: 36px;
}

.s-form .prime-btn {
	margin-top: 32px;
	width: 100%;
}

.input-fields-inner {
	display: grid;
	grid-column-gap: 18px;
	grid-row-gap: 18px;
}

.input-fields-inner--t2 {
	grid-template-columns: 1fr 1fr;
}

.input-fields-inner--t3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.input-fields+.input-fields {
	margin-top: 16px;
}

.input-field input,
.input-field .nice-select {
	border: 1px solid #DAD8DF;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	height: 56px;
	padding: 0 16px;
	font-weight: bold;
	font-size: 18px;
	line-height: 56px;
	color: #333;
	width: 100%;
}

.input-field input::-webkit-input-placeholder,
.input-field .nice-select::-webkit-input-placeholder {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	font-size: 18px;
	line-height: 100%;
	color: #818181;
}

.input-field input::-moz-placeholder,
.input-field .nice-select::-moz-placeholder {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	font-size: 18px;
	line-height: 100%;
	color: #818181;
}

.input-field input:-ms-input-placeholder,
.input-field .nice-select:-ms-input-placeholder {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	font-size: 18px;
	line-height: 100%;
	color: #818181;
}

.input-field input::-ms-input-placeholder,
.input-field .nice-select::-ms-input-placeholder {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	font-size: 18px;
	line-height: 100%;
	color: #818181;
}

.input-field input::placeholder,
.input-field .nice-select::placeholder {
	font-family: "Open Sans", sans-serif;
	font-weight: bold;
	font-size: 18px;
	line-height: 100%;
	color: #818181;
}

.input-field input:hover,
.input-field .nice-select:hover {
	border-color: #56C68E;
}

.input-field input.filled,
.input-field .nice-select.filled {
	border-color: #333333;
}

.input-field .nice-select {
	font-weight: bold;
	font-size: 18px;
	line-height: 56px;
	color: #818181;
}

.input-field .nice-select.filled {
	color: #333333;
}

.input-fields-label {
	font-weight: bold;
	font-size: 18px;
	line-height: 140%;
	color: #333333;
	margin-bottom: 6px;
}

.nice-select:after {
	width: 8px;
	height: 8px;
	border-color: #56C68E;
}

.prime-btn {
	background: #56C68E;
	border-radius: 4px;
	height: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #56C68E;
	border-radius: 4px;
	font-weight: bold;
	font-size: 16px;
	line-height: 140%;
	color: #FFFFFF;
}

.prime-btn:hover {
	opacity: 1;
	background: #6ED7A2;
}

.input-field .er-text {
	font-weight: 600;
	font-size: 12px;
	line-height: 120%;
	color: #EB5757;
	margin-top: 4px;
	display: none;
}

.input-field.error input {
	border-color: #EB5757;
	color: #EB5757;
}

.input-field.error .er-text {
	display: block;
}

.agree-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 16px;
}

.agree-box label {
	font-weight: normal;
	font-size: 12px;
	line-height: 140%;
	color: #333333;
	cursor: pointer;
}

.agree-box label a {
	color: #333333;
	text-decoration: underline;
}

.agree-box .check-wrap {
	margin-right: 13px;
	width: 16px;
	height: 16px;
	min-width: 16px;
	position: relative;
}

.agree-box .check-wrap input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: 1;
	opacity: 0;
}

.agree-box .check-wrap .check-mask {
	border: 1px solid #56C68E;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.agree-box .check-wrap .check-mask img {
	opacity: 1;
}

.check-wrap input:checked~.check-mask {
	opacity: 1;
	background: #56C68E;
}

.s-form-info {
	padding-left: 48px;
	padding-bottom: 50px;
}

.form-section-cols {
	background: #EAEEFA;
	border-radius: 12px;
	overflow: hidden;
}

.track {
	height: 30px;
}

.s-form-info img {
	display: block;
	max-width: 100%;
}

.s-form-info-list {
	margin-top: 44px;
	padding-right: 40px;
}

.s-form-info-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 28px;
}

.s-form-info-list li:last-child {
	margin-bottom: 0;
}

.s-form-info-list li .ic {
	width: 32px;
	min-width: 32px;
	margin-right: 16px;
}

.s-form-info-list li .text strong {
	font-weight: bold;
	font-size: 20px;
	line-height: 120%;
	color: #32303F;
	display: block;
	margin-bottom: 8px;
}

.s-form-info-list li .text p {
	font-weight: normal;
	font-size: 16px;
	line-height: 120%;
	color: #333333;
}

.cards-section {
	padding-top: 60px;
	padding-bottom: 100px;
}

.section-title {
	font-weight: bold;
	font-size: 24px;
	line-height: 120%;
	color: #32303F;
	margin-bottom: 40px;
}

.cards-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 28px 12px 24px 12px;
	border: 1px solid #F0F0F0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.card:hover {
	opacity: 1;
	-webkit-filter: drop-shadow(0px 4px 25px rgba(16, 41, 17, 0.1));
	filter: drop-shadow(0px 4px 25px rgba(16, 41, 17, 0.1));
}

.card .ic {
	width: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	height: 100px;
	margin-bottom: 29px;
}

.card .content {
	text-align: center;
	margin-bottom: 24px;
}

.card .content strong {
	font-weight: bold;
	font-size: 20px;
	line-height: 120%;
	color: #32303F;
	display: block;
	margin-bottom: 12px;
}

.card .content p {
	font-size: 16px;
	line-height: 120%;
	color: #333333;
}

.card .prime-btn {
	margin-top: auto;
	width: 100%;
	max-width: 161px;
	margin-left: auto;
	margin-right: auto;
	height: 46px;
}

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

.card.disabled .prime-btn {
	opacity: 0.5;
}

.info-section {
	background: #F0F4F9;
}

.info-section .wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("../img/phone.svg");
	background-position: bottom 0 right 0;
	background-repeat: no-repeat;
}

.info-section .section-title {
	margin-bottom: 24px;
}

.info-section p {
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #343434;
	max-width: 591px;
}

.info-section p+p {
	margin-top: 16px;
}

.tiles-section {
	padding-top: 60px;
	padding-bottom: 100px;
}

.tiles-section .section-title {
	text-align: center;
	margin-bottom: 48px;
}

.tiles-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.tile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 150px;
	padding: 16px 12px;
	border: 1px solid #F0F0F0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px;
}

.tile:hover {
	-webkit-box-shadow: 0px 4px 25px rgba(16, 41, 17, 0.06);
	box-shadow: 0px 4px 25px rgba(16, 41, 17, 0.06);
	opacity: 1;
}

.tile .ic {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.tile span {
	font-size: 16px;
	line-height: 120%;
	color: #32303F;
	text-align: center;
}

.s-form-confirmation,
.s-form-centre {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.confirmation-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.confirmation-title img {
	margin-right: 24px;
}

.confirmation-title span {
	font-weight: 800;
	font-size: 28px;
	line-height: 120%;
	color: #56C68E;
}

.confirmation-descr {
	margin-bottom: 30px;
	font-weight: normal;
	font-size: 20px;
	line-height: 130%;
	color: #333333;
}

.mt-sm {
	margin-top: 13px;
}

.logos {
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.form-section--tracking {
	padding-bottom: 48px;
}

.questions {
	padding-top: 80px;
	padding-bottom: 105px;
}

.questions .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title--big {
	font-size: 32px;
	line-height: 120%;
}

.accordion-box {
	padding: 12px 40px 24px 40px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 55px rgba(32, 31, 89, 0.1);
	box-shadow: 0px 4px 55px rgba(32, 31, 89, 0.1);
	border-radius: 12px;
	max-width: 1070px;
	margin-left: auto;
	margin-right: auto;
}

.accordion-item-head {
	padding-top: 20px;
	padding-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.accordion-item-head .ic {
	width: 32px;
	min-width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #F9F9FB;
	border: 1px solid #F7F7F7;
	position: relative;
	margin-right: 24px;
}

.accordion-item-head .ic:after,
.accordion-item-head .ic:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background-color: #56C68E;
	top: 50%;
	left: 50%;
}

.accordion-item-head .ic:before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.accordion-item-head .ic:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item-head strong {
	font-weight: bold;
	font-size: 20px;
	line-height: 120%;
	color: #32303F;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 5px;
}

.accordion-item-body {
	padding-bottom: 32px;
	display: none;
}

.accordion-item-body p {
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #333333;
	max-width: 932px;
}

.accordion-item {
	border-top: 1px solid #F6F6F6;
	cursor: pointer;
}

.accordion-item.active .ic:after {
	display: none;
}

.accordion-item:first-child {
	border-top: none;
}

.accordion-item:hover {
	background: #FAFAFF;
}

.accordion-item:hover .ic {
	background: #56C68E;
	border-color: #41B37A;
}

.accordion-item:hover .ic:after,
.accordion-item:hover .ic:before {
	background-color: #fff;
}

.docs {
	padding-top: 60px;
	padding-bottom: 80px;
	background: #F8F8F8;
}


.main-footer-copy p, .main-footer-copy span {
	font-size: 13px;
	color: #FFFFFF;
}

.main-footer-menu .footer-menu strong {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.main-footer-menu .footer-menu ul {
	list-style: none;
    margin: 0;
    padding: 0;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
}

.main-footer-menu .footer-menu ul li {
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #BCBFD7;
	margin-bottom: 5px;
	margin-right: 10px;
}

.main-footer-menu .col p {
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    color: #fff;
}

.docs .wrapper {
	display: grid;
	grid-template-columns: 410px 1fr;
	grid-column-gap: 33px;
	grid-row-gap: 50px;
	max-width: 1100px;
}

.accordion-item-head--reverse {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.accordion-item-head--reverse .ic {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	border-color: #56C68E;
}

.no-hover .accordion-item:hover {
	background: none;
}

.no-hover .accordion-item:first-child {
	border-top: 1px solid #E9E9E9;
}

.no-hover .accordion-item {
	border-top: 1px solid #E9E9E9;
}

.no-hover .accordion-item:last-child {
	border-bottom: 1px solid #E9E9E9;
}

.accordion-item-body ul li {
	padding-left: 23px;
	position: relative;
}

.accordion-item-body ul li:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 14px;
	height: 1px;
	background-color: #56C68E;
}

.accordion-item-body ul li p {
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #333333;
}

.accordion-item-body ul li:not(:last-child) {
	margin-bottom: 23px;
}

.h-use {
	padding-top: 95px;
	padding-bottom: 120px;
}

.h-use .section-title {
	text-align: center;
	max-width: 498px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 57px;
}

.steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.steps li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	max-width: 410px;
	position: relative;
}

.steps li:after {
	content: "";
	position: absolute;
	top: 83px;
	right: -51%;
	width: 100%;
	height: 16px;
	background-image: url("../img/arrow.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.steps li:last-child:after {
	display: none;
}

.steps li .num {
	font-weight: 800;
	font-size: 33px;
	line-height: 120%;
	color: #B4B4B4;
	opacity: 0.26;
	display: block;
	margin-bottom: 16px;
}

.steps li img {
	display: block;
	margin-bottom: 20px;
}

.steps li strong {
	font-weight: bold;
	font-size: 20px;
	line-height: 120%;
	text-align: center;
	color: #32303F;
	margin-bottom: 16px;
}

.steps li p {
	font-weight: normal;
	font-size: 16px;
	line-height: 120%;
	color: #333333;
}

.accordion-item-head--reverse .ic {
	margin-right: 8px;
}

.accordion-item-head--reverse {
	padding-top: 24px;
	padding-bottom: 24px;
}

.s-form .prime-btn {
	font-size: 20px;
}

.s-form h2 {
	font-size: 24px;
}

@media (max-width: 1225px) {
	.steps li:after {
		right: -25%;
		width: 52%;
	}
}

@media (max-width: 1124px) {
	.cards-list {
		grid-template-columns: repeat(3, 1fr);
	}
	.s-form {
		padding: 40px 20px 30px 20px;
	}
	.s-form-info {
		padding-left: 20px;
		padding-bottom: 35px;
	}
	.form-section {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	.tiles-list {
		grid-template-columns: repeat(3, 1fr);
	}
	.main-footer-menu .logo {
		margin-right: 50px;
	}
}

@media (max-width: 1025px) {
	.s-form-info-list li .text strong {
		font-size: 18px;
	}
	.main-footer-menu {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.main-footer-menu .logo {
		width: 100%;
		margin-bottom: 30px;
	}
	.main-footer-menu .footer-col {
		margin-right: auto;
		margin-left: 0;
	}
	.logos {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		width: calc(100% + 30px);
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.docs .wrapper {
		grid-template-columns: 100%;
		grid-row-gap: 5px;
	}
	.steps li:after {
		display: none;
	}
	.steps li {
		max-width: 30%;
	}
}

img.search-mob {
	display: none;
}

.ffs {
	position: relative;
}

.s-form-info-txt {
    position: absolute;
    right: 50px;
    top: 39px;
    max-width: 240px;
}

.s-form-info-txt-1 {
	color: #202429;
	width: 100%;
	display: block;
	font-size: 21px;
	font-weight: bold;
}

.s-form-info-txt-2 {
	color: #8e8e8e;
    width: 100%;
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    padding-top: 7px;
}

@media (max-width: 1050px) {
	.s-form-info-txt {
		display: none;
	}
}

@media (max-width: 767px) {
	img.search-desctop {
		display: none;
	}
	img.search-mob {
		display: block;
		margin: 0 auto;
		max-width: 130px;
	}
	.form-section-cols {
		grid-template-columns: 100%;
		grid-row-gap: 20px;
		background: none;
	}
	.main-header {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.s-form-info-list {
	    margin-top: 20px;
	    padding-right: 0;
	}
	.section-title {
	    font-size: 18px;
	    margin-bottom: 20px;
	}
	.card .content strong {
	    font-size: 14px;
	    margin-bottom: 5px;
	}
	.card .content p {
	    font-size: 13px;
	    line-height: 120%;
	}
	.cards-list {
	    grid-column-gap: 15px;
	    grid-row-gap: 15px;
	}
	.card .prime-btn {
	    height: 38px;
	    font-size: 15px;
	}
	.card {
	    padding: 10px;
	}
	.cards-section {
	    padding-top: 30px;
	    padding-bottom: 30px;
	}
	.tiles-section .section-title {
	    text-align: center;
	    margin-bottom: 20px;
	}
	.info-section .wrapper, .tiles-section, .main-footer-content {
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
	.footer-menu li a {
	    font-size: 13px;
	}
	.footer-contacts span {
	    font-size: 13px;
	    margin-bottom: 4px;
	}
	.footer-contacts a {
	    font-size: 18px;
	}
	.tile span {
	    font-size: 13px;
	}
	.tile {
	    padding: 5px;
	    min-height: auto;
	}
	.tile .ic {
	    margin-bottom: 0px;
	}
	.info-section p {
	    font-size: 13px;
	}
	.s-form {
		padding: 15px;
	}
	.s-form h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.input-field input,
	.input-field .nice-select {
		height: 38px;
		padding: 0 10px;
		font-size: 14px;
		line-height: 100%;
	}
	.input-field input::-webkit-input-placeholder,
	.input-field .nice-select::-webkit-input-placeholder {
		font-size: 14px;
		line-height: 100%;
	}
	.input-field input::-moz-placeholder,
	.input-field .nice-select::-moz-placeholder {
		font-size: 14px;
		line-height: 100%;
	}
	.input-field input:-ms-input-placeholder,
	.input-field .nice-select:-ms-input-placeholder {
		font-size: 14px;
		line-height: 100%;
	}
	.input-field input::-ms-input-placeholder,
	.input-field .nice-select::-ms-input-placeholder {
		font-size: 14px;
		line-height: 100%;
	}
	.input-field input::placeholder,
	.input-field .nice-select::placeholder {
		font-size: 14px;
		line-height: 100%;
	}
	.input-field .nice-select {
		font-size: 14px;
		line-height: 100%;
		padding-top: 10px;
	}
	.input-fields+.input-fields {
		margin-top: 5px;
	}
	.input-fields-inner {
		display: grid;
		grid-column-gap: 5px;
		grid-row-gap: 5px;
	}
	.nice-select:after {
		top: 44%;
	}
	.s-form .prime-btn {
		font-size: 15px;
		margin-top: 5px;
		height: 38px;
	}
	.form-section {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.agree-box {
		margin-top: 10px;
	}
	.agree-box label {
		font-size: 10px;
		line-height: 120%;
	}
	.logo img {
		display: block;
		max-height: 35px;
	}
	.s-form {
		border-radius: 12px;
	}
	.cards-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.info-section .wrapper {
		background-image: none;
	}
	.tiles-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.main-footer-copy span {
	    font-size: 13px;
	}
	.main-footer-menu .logo {
	    margin-bottom: 0;
	}
	.footer-menu li {
	    margin-bottom: 0px;
	}
	.tiles-list {
	    grid-column-gap: 15px;
	    grid-row-gap: 15px;
	}
	.main-footer-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.main-footer-menu .footer-col {
		margin-top: 15px;
	}
	.main-footer-content .note {
	    margin-top: 20px;
	}
	.input-fields-inner {
		grid-template-columns: 100% !important;
	}
	.s-form-info {
		padding-left: 0;
		padding-bottom: 0;
	}
	.form-section {
		padding-bottom: 30px;
	}
	.steps {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.steps li {
		max-width: 100%;
	}
	.steps li:not(:last-child) {
		margin-bottom: 30px;
	}
	.s-form-info img {
	    margin: 0 auto;
	    max-width: 180px;
	}
	.confirmation-descr {
	    font-size: 14px;
	    margin-bottom: 10px;
	}
	.section-title--big {
		font-size: 18px;
	}
	.questions .section-title {
	    margin-bottom: 20px;
	}
	.h-use,
	.questions {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.accordion-box {
	    padding: 10px;
	}
	.docs {
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
	.accordion-item-head--reverse {
	    padding-top: 5px;
	    padding-bottom: 5px;
	}
	.accordion-item-body ul li {
	    font-size: 13px;
	}
	.accordion-item-body ul li:not(:last-child) {
	    margin-bottom: 5px;
	}
	.accordion-item-body {
	    padding-bottom: 6px;
	}
	.steps li img {
	    margin-bottom: 10px;
	    max-width: 35px;
	}
	.steps li .num {
	    font-size: 25px;
	    margin-bottom: 7px;
	}
	.steps li p {
	    font-size: 13px;
	}
	.steps li strong {
	    font-size: 14px;
	    margin-bottom: 5px;
	}
	.h-use .section-title {
	    margin-bottom: 20px;
	}
	.accordion-item-body p {
	    font-size: 13px;
	    line-height: 130%;
	}
	.accordion-item:hover {
		background: none;
	}
	.logos {
		margin-top: 25px;
	}
	.track {
		display: none;
	}
	.accordion-item-head strong {
		font-weight: bold;
		font-size: 14px;
		align-items: center;
		margin-top: 0;
	}
	.accordion-item-head {
	    padding-top: 5px;
	    padding-bottom: 5px;
	}
	.accordion-item-head .ic:after, .accordion-item-head .ic:before {
	    width: 10px;
	}
	.accordion-item-head .ic {
    	width: 25px;
	    min-width: 25px;
	    height: 25px;
	    margin-right: 15px;
	}
	.confirmation-title img {
		margin-right: 15px;
		width: 35px;
	}
	.confirmation-title span {
		font-weight: 800;
		font-size: 18px;
	}
	.confirmation-descr {
		font-size: 14px;
	}
	.input-fields-label {
	    font-size: 12px;
	}
	.s-form-info-list li .text p {
	    font-size: 13px;
	}
	.s-form-info-list li .text strong {
	    font-size: 14px;
	}
}

@media (max-width: 577px) {
	.cards-list {
		grid-template-columns: repeat(1, 1fr);
	}
	.tiles-list {
		grid-template-columns: repeat(1, 1fr);
	}
}

.nice-select .list {
    left: -1px;
}

.form-hidden {
	display: none;
}

.form-loader {
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    margin-top: 4px;
}

.nice-select.open .list {
    max-height: 250px;
    overflow: auto;
    width: 100%;
}