@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
/* font-family: 'DM Sans', sans-serif; */
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, ol, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:top;
	background:transparent;
	list-style: none;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html, body {
	/*height: 100%;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: normal;
	background-color: #FAFAFA;
	color: #020111;
	padding: 0;
	margin: 0;
	text-size-adjust: none ;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
	letter-spacing: -0.04rem;
}
body.body-lock {
	overflow: hidden;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	display:block;
	max-width:100%;
}
a {
	color: #020111;
	text-decoration: underline;
	padding: 0;
	outline: none;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
a:hover {
	color: #5D63A5;
	text-decoration: none;
}

.link {
	font-size: 18px;
	color: #5D63A5;
	text-decoration: none;
}
.link:hover {
	color: #020111;
}

h1, .h1 {
	font-size: 88px;
	line-height: 95px;
	font-weight: 400;
}
h2, .h2 {
	font-size: 56px;
	line-height: 63px;
	font-weight: 400;
}
h3, .h3 {
	font-size: 24px;
	font-weight: 400;
}
p {
	margin-bottom: 16px;
}
p:last-child {
	margin-bottom: 0;
}
small {
	font-size: 16px;
	display: inline-block;
}

b,
strong {
	font-weight: 700;
}

a.underline {
	text-decoration: underline;
}

hr {
	margin: 30px 0;
	border: 0;
	height: 1px;
	width: 100%;
	background-color: #C1C1C1;
}

.space-normal {
	letter-spacing: normal;
}
.font-medium {
	font-weight: 500;
}
.font-normal {
	font-weight: 400;
}
.text-center {
	text-align: center !important;
}
.text-uppercase {
	text-transform: uppercase;
}


.ml-auto,
.mx-auto {
	margin-left: auto;
}
.mr-auto,
.mx-auto {
	margin-right: auto;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-8 {
	margin-bottom: 8px !important;
}
.mb-16 {
	margin-bottom: 16px !important;
}
.mb-24 {
	margin-bottom: 24px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}

.s-pt, .s-py {
	padding-top: 120px;
}
.s-pb, .s-py {
	padding-bottom: 120px;
}
.pt-80, .py-80 {
	padding-top: 80px;
}
.pb-80, .py-80 {
	padding-bottom: 80px;
}


.d-flex{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.align-center {
    -webkit-align-items:center;
    align-items:center;
}
.align-start {
    -webkit-align-items:start;
    align-items:start;
}
.align-end {
    -webkit-align-items: flex-end;
	align-items: flex-end;
}
.space-between {
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
.justify-center {
    -webkit-justify-content: center;
	justify-content: center;
}
.hide {
	display: none;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.small-container {
	width: 100%;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

select, button, input {
    filter: none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='number'] {
    -moz-appearance:textfield;
}
input:focus {
    outline: none;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
textarea {
	resize: none;
	height: 100px;
}

.btn,
.hs-button {
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	line-height: 20px;
	padding: 16px 44px;
	display: inline-block;
	cursor: pointer;
	border: 1px solid;
	-webkit-border-radius: 48px;
	-moz-border-radius: 48px;
	border-radius: 48px;
	-webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
	text-align: center;
	text-decoration: none;
}
.btn.primary,
.hs-button {
	border-color: #5D63A5;
	background-color: #5D63A5;
	color: #fff;
}
.btn.primary:hover,
.hs-button:hover {
	border-color: #08071C;
	background-color: #08071C;
	color: #fff;
}
.btn.secondary {
	border-color: #fff;
	background-color: #fff;
	color: #08071C;
}
.btn.secondary:hover {
	border-color: #5D63A5;
	background-color: #5D63A5;
	color: #fff;
}
.btn.outline {
	border-color: #5D63A5;
	background-color: transparent;
	color: #5D63A5;
}
.btn.outline:hover {
	border-color: #08071C;
	background-color: #08071C;
	color: #fff;
}


/* Custom Letter Animation */
/*[data-animate] {
	opacity: 0;
    will-change: auto;
}
.animated {
    transition: all 1s cubic-bezier(0.57, 0.08, 0.9, 0.36);
    opacity: 1;
}*/

.title-animation {
	overflow: hidden;
}
.title-animation .word {
	opacity: 0;
	will-change: auto;
	transform: translateY(20%) skewY(1deg);
	display: inline-block;
}
.title-animation .word.animated {
	-webkit-transition:all 0.5s linear;
    -moz-transition:all 0.5s linear;
    transition:all 0.5s linear;
    opacity: 1;
    transform: translateY(0) skewY(0);
}

.grident-border-box {
	visibility: hidden;
	position: relative;
	background-clip: padding-box;
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
/*  	background-origin: border-box;*/
	background: linear-gradient(to right, rgba(2, 1, 17, 0.10), rgba(2, 1, 17, 0.05));
/*	background: linear-gradient(to right, #585668, #383648);*/
}
/*.grident-border-box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;
	background-color: rgba(250, 250, 250, 0.05);
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	pointer-events: none;
	z-index: 1;
}*/
.grident-border-box::before {
	content: "";
	position: absolute;
	background-color: #FFFFFF;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 1px;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
/*	opacity: .7;*/
	/*background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;*/
	/*z-index: -1;
	margin: -1px;
	background: linear-gradient(to right, rgba(250, 250, 250, 0.4), rgba(250, 250, 250, 0));*/
}
.grident-border-box .content {
	position: relative;
	z-index: 3;
}

.site-header {
	padding: 32px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.site-header .btn + .btn {
	margin-left: 16px;
}
.site-header.fixed {
	padding: 20px 0;
	background-color: #fff;
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.05);
}
.site-header .container {
	max-width: 1320px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.site-header .btn {
	padding-left: 26px;
	padding-right: 26px;
}

.site-footer {
	padding: 48px 0;
}
.site-footer .container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.site-footer .logo {
	width: 150px;
}
.site-footer .logo img {
	max-width: 115px;
}
.site-footer .copyright-text {
	width: 150px;
	font-size: 18px;
	text-align: center;
	margin: 0;
}
.site-footer .link {
	width: 150px;
	text-align: right;
}

.wrapper {
	padding-top: 200px;
	overflow-x: hidden;
}

.intro-section {
	padding-bottom: 60px;
}
.intro-section .intro-bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.intro-section .intro-title {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}
.intro-section .intro-title > span {
	display: block;
}
.intro-section .intro-title .left-star {
	position: absolute;
	top: 100%;
	left: 5%;
	width: 35px;
	height: 35px;
	transform: translateY(50%);
}
.intro-section .intro-title .right-star {
	position: absolute;
	top: 0;
	right: 10%;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
}
.intro-section .intro-text {
	text-align: center;
}

.chart-block {
	position: relative;
}
.chart-block .mob-img {
	display: none;
}
.chart-block .rotate,
.chart-block svg {
	position: absolute;
	pointer-events: none;
	z-index: 2;
	width: 81%;
	height: auto;
	top: 16%;
	left: 9%;
}
.chart-block .chart-content {
	position: absolute;
	width: 700px;
	left: 50%;
	bottom: 170px;
	text-align: center;
	transform: translateX(-50%);
}
.chart-block .chart-content h2 {
	font-weight: 500;
}
.chart-block .chart-content .headline-text {
	display: inline-block;
	font-weight: 700;
	background: linear-gradient(94deg, #F33459 -8.2%, #5F8BF1 29.04%, #5D90F2 29.06%, #4DA7F2 66.3%, #4CA8F2 66.31%, #4CA2F1 66.32%, #5BE09B 103.57%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.intro-option-list {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.intro-option-list .intro-option-item {
	width: 294px;
	padding: 32px;
	position: relative;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	margin: 16px;
	text-align: center;
	/*background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;*/
}
/*.intro-option-list .intro-option-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	height: 100%;
	width: 100%;
	background-color: rgba(250, 250, 250, 0.05);
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	border: 1px solid rgba(250, 250, 250, 0.4);
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	pointer-events: none;
}*/
.intro-option-list .intro-option-item img {
	margin: 0 auto 8px auto;
}

.advantages-section {
	position: relative;
	background-color: rgba(24, 23, 38, 0.05);
	-webkit-border-radius: 120px;
	-moz-border-radius: 120px;
	border-radius: 120px;
}
.advantages-section .advantages-overlay {
	position: absolute;
	top: -5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	width: 1400px;
	height: 1400px;
/*	border-radius: 50%;*/
	opacity: .7;
	background: rgb(211,214,240);
	background: radial-gradient(circle, rgba(211,214,240,1) 0%, rgba(211,214,240,0) 80%);
	filter: blur(254.5px);
	/*background: rgb(119,115,182);
	background: radial-gradient(circle, rgb(119, 115, 182) 0%, rgb(0, 0, 0) 50%);*/
}
.advantages-list-block {
	max-width: 1080px;
	margin: 0 auto;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
.advantages-list-block .star1, .advantages-list-block .star2, .advantages-list-block .star3 {
	position: absolute;
	width: 35px;
	height: 35px;
}
.advantages-list-block .star1 {
	top: 0;
	left: 25%;
}
.advantages-list-block .star2 {
	top: 0;
	right: -18px;
}
.advantages-list-block .star3 {
	bottom: 120px;
	left: 10%;
}
.advantages-list-block .advantages-title {
	max-width: 430px;
	position: relative;
}
.advantages-list-block .advantages-list .advantages-list-item {
	width: 420px;
	margin-bottom: 32px;
	padding: 32px;
	position: relative;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	/*background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;*/
}
.advantages-list-block .advantages-list .advantages-list-item .content {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.advantages-list-block .advantages-list .advantages-list-item:nth-child(2) {
	margin-left: 120px;
}
.advantages-list-block .advantages-list .advantages-list-item:last-child {
	margin-left: -20px;
	margin-bottom: 0;
}
/*.advantages-list-block .advantages-list .advantages-list-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	height: 100%;
	width: 100%;
	background-color: rgba(250, 250, 250, 0.05);
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	border: 1px solid rgba(250, 250, 250, 0.4);
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	pointer-events: none;
}*/
.advantages-list-block .advantages-list .advantages-list-item img {
	min-width: 48px;
	width: 48px;
	margin-right: 16px;
}

.treadline-section {
	position: relative;
}

.treadline-block {
	position: relative;
	padding: 80px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background-image: url(../images/treadline-bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.treadline-block h2 {
	position: relative;
	color: #fff;
	z-index: 2;
	max-width: 870px;
	margin: 0 auto;
	text-align: center;
}
.treadline-block h2 a {
	color: #fff;
	text-decoration: none;
	position: relative;
}
.treadline-block h2 a:hover {
	color: #020111;
}
.treadline-block h2 a::after {
	pointer-events: none;
	content: "";
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.treadline-block h2 a:hover::after {
	background-color: #020111;
}
.treadline-block.animated h2 a::after {
	width: 0;
}
.business-tradeline-block {
	position: relative;
	padding-top: 150px;
	min-height: 640px;
	/*background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/business-tradeline.jpg);*/
}
.parallax-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.business-tradeline-block::before, .business-tradeline-block::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.business-tradeline-block::before {
	background: rgb(250,250,250);
	background: radial-gradient(50% 50% at 50% 50%, rgba(250, 250, 250, 0.00) 0%, #EFEFEF 100%);
	z-index: 1;
}
.business-tradeline-block::after {
	display: none;
	background-image: radial-gradient(rgba(15,14,29,0), #161524);
}
.business-tradeline-block .container {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.business-tradeline-block h2 {
	max-width: 500px;
	padding-right: 20px;
}
.business-tradeline-block p {
	max-width: 620px;
}
.step-block {
	text-align: center;
	padding-top: 48px;
	position: relative;
	z-index: 3;
}
.step-block .step-list {
	margin: 30px -10px 0 -10px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.step-block .step-list .step-item {
    max-width: 315px;
    width: calc(33.33% - 20px);
    margin: 20px 10px 0 10px;
    position: relative;
}
.step-block .step-list .step-item .step-line {
	content: "";
	position: absolute;
	top: 40%;
	left: 100%;
	width: 160px;
	height: 15px;
	background-image: url(../images/step-line.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}
.step-block .step-list .step-item .step-no {
	margin-bottom: 24px;
	color: #020111;
	font-size: 16px;
	opacity: .5;
	display: inline-block;
}
.step-block .step-list .step-item .step-img {
	margin: 0 auto 24px auto;
}

.boosting-task-section {
	padding: 98px 0 32px 0;
	position: relative;
}
.boosting-task-section .task-left-overlay {
	position: absolute;
	top: -25%;
	left: 0;
	width: 2000px;
	height: 2000px;
	pointer-events: none;
	opacity: .3;
	background: rgb(163,170,232);
	background: radial-gradient(circle, rgba(163,170,232,1) 0%, rgba(163,170,232,0) 50%);
	transform: translateX(-50%);
	z-index: 1;
}
.boosting-task-section .task-right-overlay {
	position: absolute;
	top: -30%;
	right: 0;
	width: 2200px;
	height: 2200px;
	pointer-events: none;
	opacity: .2;
	background: rgb(115,224,169);
	background: radial-gradient(circle, rgba(115,224,169,1) 0%, rgba(115,224,169,0) 60%);
	transform: translateX(50%);
	z-index: 1;
}
.boosting-task-block {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
/*    margin-right: calc(((100vw - 100%)/ 2) * -1);*/
    position: relative;
    z-index: 2;
    margin-bottom: 98px;
}
.boosting-task-block .boosting-task-img {
	max-width: 50%;
	margin-right: -100px;
}
.boosting-task-block .content-block {
	max-width: 500px;
	width: 50%;
	position: relative;
}
.boosting-task-block .content-block .star1 {
	position: absolute;
	width: 35px;
	height: 35px;
	top: 0;
	right: 0;
	transform: translateX(100%);
}
.boosting-task-block .content-block .star2 {
	position: absolute;
	width: 35px;
	height: 35px;
	bottom: -40px;
	left: 80px;
}

.features-table-block {
	padding: 16px 40px;
	position: relative;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	/*background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;*/
}
/*.features-table-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	height: 100%;
	width: 100%;
	background-color: rgba(250, 250, 250, 0.05);
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	border: 1px solid rgba(250, 250, 250, 0.4);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	pointer-events: none;
}*/
.features-table-block table {
	width: 100%;
	position: relative;
	z-index: 3;
}
.features-table-block table, .features-table-block th, .features-table-block td {
	border-collapse: collapse;
	vertical-align: middle;
}
.features-table-block th, .features-table-block td {
	padding: 24px 0;
	border-bottom: 2px solid rgba(2, 1, 17, 0.15);
	text-align: center;
	padding-left: 10px;
}
.features-table-block th {
	font-weight: 500;
}
.features-table-block td {
	border-width: 1px;
}
.features-table-block tr th:first-child,
.features-table-block tr td:first-child {
	text-align: left;
	padding-left: 0;
}
.features-table-block tr:last-child td {
	border: none;
}
.features-table-block th img, .features-table-block td img {
	margin: 0 auto;
}

.newslatter-block {
	padding: 80px 40px;
	position: relative;
	color: #fff;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	margin: 120px 0 32px 0;
	background: linear-gradient(90deg, #F33463 0%, #5D8CF2 33.33%, #4CA8F2 66.67%, #5BE09B 100%);
	/*background-image: url(../images/option-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: repeat;*/
}
.newslatter-block .star {
	position: absolute;
	z-index: 1;
	top: 0;
	transform: translateY(-50%);
	width: 45px;
	right: 50px;
}
/*.newslatter-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	height: 100%;
	width: 100%;
	background-color: rgba(250, 250, 250, 0.05);
	-webkit-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	-moz-box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	box-shadow: 6px 6px 30px 0px rgba(2, 1, 17, 0.2);
	border: 1px solid rgba(250, 250, 250, 0.4);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	pointer-events: none;
}*/
.newslatter-block .content {
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
}

.offer-section {
	position: relative;
	border-top: 1px solid rgba(2, 1, 17, .1);
}
.offer-section .star {
	position: absolute;
	width: 35px;
	height: 35px;
	bottom: 200px;
	left: 0;
}
.offer-section h2 {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.offer-option-list {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 -12px;
}
.offer-option-list .offer-option-item {
	width: calc(33.33% - 24px);
	padding: 32px;
	position: relative;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	margin: 12px;
	text-align: center;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.offer-option-list .offer-option-item img {
	margin: 0 auto 8px auto;
}

.conf-ans-list {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 40px;
}
.conf-ans-list .conf-ans-item {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 16px;
    color: #8D8D9D;
    margin-right: 32px;
}
.conf-ans-list .conf-ans-item img {
	width: 24px;
	margin-right: 8px;
}

.hs-form-field {
	margin-bottom: 20px;
}
.hs-form-field label {
	font-size: 18px;
	line-height: normal;
	display: block;
	margin-bottom: 6px;
}
.hs-error-msg,
.hs-error-msgs {
	color: #ff0000;
}
.hs_error_rollup {
	margin: 10px 0;
	font-size: 18px;
	line-height: normal;
}
.hs-form-field .hs-input {
	padding: 10px 20px;
	width: 100%;
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: normal;
	color: #020111;
	background-color: #fff;
	border: 1px solid rgba(2, 1, 17, 0.15);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
	-webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background: rgb(0,0,0,0.5);
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
	-webkit-align-items:center;
    align-items:center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	/* -webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%); */
	transition:all .2s ease;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
}
.popup.open {
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
	/* -webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0); */
}
.popup-body {
	position: relative;
	z-index: 1;
	width: 600px;
	max-width: 94%;
	background-color: #fff;
	margin: 20px auto;
	padding: 30px 50px 50px 50px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}
.popup-body .hs-richtext {
	margin-bottom: 30px;
}
.popup-body .hs-richtext h2 {
	font-size: 36px;
	line-height: normal;
}
.popup-body .submitted-message {
	padding-top: 50px;
}
.popup .overlay {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
.popup .close {
	position: absolute;
	right: 22px;
	top: 35px;
	width: 32px;
	height: 32px;
	opacity: 0.5;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.popup .close:hover {
	opacity: 1;
}
.popup .close:before,
.popup .close:after {
	position: absolute;
	left: 15px;
	content: "";
	height: 33px;
	width: 2px;
	background-color: #020111;
}
.popup .close:before {
	transform: rotate(45deg);
}
.popup .close:after {
	transform: rotate(-45deg);
}

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

@media (max-width: 1400px) {
	.boosting-task-block .boosting-task-img {
		margin-right: 0;
	}
}
@media (max-width: 1199px) {
	body {
		font-size: 20px;
	}
	h1, .h1 {
		font-size: 70px;
		line-height: 80px;
	}
	h2, .h2 {
		font-size: 44px;
		line-height: 52px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	.s-pt, .s-py {
		padding-top: 80px;
	}
	.s-pb, .s-py {
		padding-bottom: 80px;
	}
	.pt-80, .py-80 {
		padding-top: 60px;
	}
	.pb-80, .py-80 {
		padding-bottom: 60px;
	}
	.wrapper {
		padding-top: 150px;
	}
	.chart-block .chart-content {
		bottom: 120px;
		max-width: 560px;
	}
	.business-tradeline-block {
		padding: 100px 0;
		min-height: 500px;
	}
	.step-block .step-list .step-item .step-line {
		left: 80%;
	}
	.boosting-task-section {
		padding: 60px 0 24px 0;
	}
	.boosting-task-block {
		margin-bottom: 60px;
	}
	.newslatter-block {
		margin: 80px 0 0 0;
	}
	.site-footer {
		padding: 40px 0;
	}
	.boosting-task-section .task-left-overlay {
		top: -20%;
		width: 1200px;
		height: 1200px;
	}
	.boosting-task-section .task-right-overlay {
		top: -20%;
		width: 1200px;
		height: 1200px;
	}
	.offer-section .star {
		bottom: 160px;
	}
}
@media (max-width: 1023px) {
	h1, .h1 {
		font-size: 60px;
    	line-height: 66px;
	}
	h2, .h2 {
	    font-size: 36px;
	    line-height: 44px;
	}
	.site-header, .site-header.fixed {
		padding: 20px 0;
	}
	.intro-section .intro-title {
		margin-bottom: 16px;
	}
	.intro-section .intro-text {
		margin-bottom: 0;
	}
	.chart-block .chart-content {
		bottom: 80px;
		max-width: 450px;
	}
	.intro-option-list {
		margin: 0 -10px;
	}
	.intro-option-list .intro-option-item {
		padding: 20px;
		width: calc(33.33% - 20px);
		margin: 10px;
	}
	.offer-option-list {
	    margin: 0 -10px;
	}
	.offer-option-list .offer-option-item {
		width: calc(33.33% - 20px);
		padding: 20px;
		margin: 10px;
	}
	.offer-section .star {
		bottom: 140px;
	}
}
@media (max-width: 991px) {
	.s-pt, .s-py {
		padding-top: 60px;
	}
	.s-pb, .s-py {
		padding-bottom: 60px;
	}
	.pt-80, .py-80 {
		padding-top: 40px;
	}
	.pb-80, .py-80 {
		padding-bottom: 40px;
	}
	.mb-24 {
		margin-bottom: 20px !important;
	}
	.mb-30 {
		margin-bottom: 24px !important;
	}
	.intro-section {
		padding-bottom: 40px;
	}
	.advantages-section {
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		border-radius: 50px;
	}
	.advantages-list-block .star1 {
		left: 0;
	}
	.advantages-list-block .star2 {
		right: 0;
	}
	.advantages-list-block .star3 {
		display: none;
	}
	.advantages-list-block .advantages-title {
		max-width: 100%;
		text-align: center;
		width: 100%;
	}
	.advantages-list {
		margin: 30px auto 0 auto;
	}
	.advantages-list-block .advantages-list .advantages-list-item {
		margin-bottom: 20px;
		padding: 20px;
	}
	.advantages-list-block .advantages-list .advantages-list-item br {
		display: none;
	}
	.advantages-section .advantages-overlay {
		position: absolute;
		top: -5%;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
		width: 1000px;
		height: 1000px;
		/* background: rgb(211,214,240);
		background: radial-gradient(circle, rgba(211,214,240,1) 0%, rgba(211,214,240,0) 80%); */
		background: rgb(211,214,240);
		background: radial-gradient(circle, rgba(211,214,240,1) 0%, rgba(211,214,240,0) 40%);
	}
	.treadline-block {
		padding: 40px;
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
	}
	.business-tradeline-block {
		padding: 60px 0;
	}
	.business-tradeline-block .container {
	    -webkit-flex-flow: row wrap;
	    flex-flow: row wrap;
	}
	.business-tradeline-block h2 {
		max-width: 100%;
		text-align: center;
		width: 100%;
		margin-bottom: 16px;
		padding-right: 0;
	}
	.business-tradeline-block p {
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
	.step-block .step-list .step-item .step-line {
		width: 100px;
	}
	.features-table-block {
		padding: 8px 20px;
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
	}
	.features-table-block::before {
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
	}
	.features-table-block th, .features-table-block td {
		padding: 12px 0 12px 8px;
	}
	.newslatter-block {
		padding: 40px;
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
	}
	.offer-section .star {
		bottom: 120px;
	}
}
@media (max-width: 767px) {
	.chart-block .mob-img {
		display: block;
	}
	.chart-block .desktop-img {
		display: none;
	}
	body {
		font-size: 18px;
	}
	h1, .h1 {
		font-size: 44px;
		line-height: 52px;
	}
	h2, .h2 {
		font-size: 32px;
		line-height: 40px;
	}
	h3, .h3 {
		font-size: 18px;
	}
	.mb-24 {
		margin-bottom: 16px !important;
	}
	.mb-30 {
		margin-bottom: 20px !important;
	}
	.chart-block .chart-content {
		max-width: 300px;
  		bottom: 60px;
	}
	.chart-block .chart-content h2 {
		font-size: 24px;
		line-height: normal;
	}
	.intro-option-list .intro-option-item {
		width: calc(50% - 20px);
	}
	.business-tradeline-block {
		min-height: 400px;
	}
	.step-block {
		padding-top: 20px;
	}
	.step-block .step-list {
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.step-block .step-list .step-item {
		width: calc(50% - 20px);
		margin-top: 30px;
	}
	.step-block .step-list .step-item .step-line {
		display: none;
	}
	.step-block .step-list .step-item p {
		max-width: 200px;
		margin: 0 auto;
	}
	.advantages-list-block .star1 {
		top: -40px;
	}
	.advantages-list-block .star2 {
		top: -60px;
	}
	.treadline-block {
		padding: 30px;
	}
	.boosting-task-section {
		padding: 40px 0 20px 0;
	}
	.boosting-task-block {
		margin-bottom: 40px;
		margin-right: 0;
	}
	.boosting-task-block .content-block {
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.boosting-task-block .boosting-task-img {
		max-width: 100%;
		margin: 0 auto;
	}
	.boosting-task-block .content-block p {
		max-width: 100%;
	}
	.newslatter-block {
		margin-top: 60px;
		padding: 32px 20px;
	}
	.site-footer {
		padding: 20px 0;
	}
	.features-table-block table thead {
		display: none;
	}
	.features-table-block table tr {
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		padding: 24px;
	}
	.features-table-block table tr:last-child {
		border: 0;
	}
	.features-table-block table td {
		display: block;
		width: 50%;
		margin-left: auto;
		text-align: center;
		border: 0;
		position: relative;
	}
	.features-table-block table td::before {
		content: "";
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		font-size: 24px;
	}
	.features-table-block table td.features::before {
		content: "Features";
		font-weight: 700;
		display: flex;
		align-items: center;
		text-align: left;
	}
	.features-table-block table td.t-score::before, .features-table-block table td.experian::before, .features-table-block table td.equifax::before, .features-table-block table td.dnb::before {
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left center;
	}
	.features-table-block table td.t-score::before {
		background-image: url(../images/t-score.svg);
		background-size: 100px;
	}
	.features-table-block table td.experian::before {
		background-image: url(../images/experian.svg);
		background-size: 120px;
	}
	.features-table-block table td.equifax::before {
		background-image: url(../images/equifax.svg);
		background-size: 100px;
	}
	.features-table-block table td.dnb::before {
		background-image: url(../images/dnb.svg);
		background-size: 180px;
	}
	.features-table-block tr th:first-child, .features-table-block tr td:first-child {
		text-align: center;
		padding-left: 8px;
	}
	.boosting-task-section .task-left-overlay {
		top: 0;
		width: 800px;
		height: 800px;
	}
	.boosting-task-section .task-right-overlay {
		top: -5%;
		width: 800px;
		height: 800px;
	}
	.popup .close {
		top: 22px;
	}
	.popup-body .hs-richtext {
		margin-bottom: 20px;
	}
	.popup-body .hs-richtext h2 {
		font-size: 28px;
	}
	.popup-body {
		padding: 20px;
	}
	.offer-option-list .offer-option-item {
		width: calc(50% - 20px);
	}
	.boosting-task-block .content-block .star1 {
		transform: translate(50%, -100%);
	}
	.boosting-task-block .content-block .star2 {
		left: 0;
		bottom: 0;
	}
	.conf-ans-list {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.conf-ans-list .conf-ans-item {
		margin: 0 12px;
	}
	.loot-logo {
		max-width: 100px;
	}
}
@media (max-width: 575px) {
	h1, .h1 {
		font-size: 36px;
		line-height: 40px;
	}
	h2, .h2 {
		font-size: 28px;
		line-height: 32px;
	}
	.btn,
	.hs-button {
		padding: 12px 30px;
		font-size: 18px;
		line-height: 18px;
	}
	.site-header .logo {
		max-width: 100px;
	}
	.site-header .btn + .btn {
		margin-left: 10px;
	}
	.site-header .btn {
		font-size: 14px;
		padding: 6px 16px;
	}
	.chart-block .chart-content {
		max-width: 220px;
  		bottom: 35px;
	}
	.chart-block .chart-content h2 {
		font-size: 18px;
	}
	.intro-section .intro-text {
		max-width: 280px;
		margin: 0 auto;
	}
	.intro-section .intro-text br {
		display: none;
	}
	.intro-section .intro-title .left-star {
		top: -60%;
		left: 0;
	}
	.intro-section .intro-title .right-star {
		right: 0;
		top: -40%;
	    width: 40px;
	    height: 40px;
	}
	.intro-option-list {
		margin: 0 auto;
		max-width: 320px;
	}
	.intro-option-list .intro-option-item {
		width: 100%;
		margin: 8px 0;
	}
	.intro-option-list .intro-option-item img {
		width: 32px;
	}
	.advantages-list-block .advantages-title {
		max-width: 260px;
		margin: 0 auto;
	}
	.advantages-list {
		width: 100%;
		max-width: 320px;
		margin: 30px auto 0 auto;
	}
	.advantages-list-block .advantages-list .advantages-list-item {
		width: 100%;
	}
	.advantages-list-block .advantages-list .advantages-list-item:nth-child(2), .advantages-list-block .advantages-list .advantages-list-item:last-child {
		margin-left: 0;
	}
	.advantages-list-block .advantages-list .advantages-list-item img {
		width: 40px;
		min-width: 40px;
	}
	.business-tradeline-block {
		min-height: 300px;
	}
	.step-block h2 {
		max-width: 250px;
		margin: 0 auto;
	}
	.step-block .step-list {
		margin: 0;
	}
	.step-block .step-list .step-item {
		width: 100%;
		margin: 48px 0 0 0;
	}
	.step-block .step-list .step-item .step-no, .step-block .step-list .step-item .step-img {
		margin-bottom: 16px;
	}
	/*.site-footer .container {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.site-footer .logo, .site-footer .copyright-text, .site-footer .link {
		text-align: center;
		width: auto;
	}
	.site-footer .copyright-text {
		width: 100%;
		margin: 16px 0;
	}*/
	.site-footer .logo {
		width: auto;
	}
	.site-footer .logo img {
		width: 100px;
	}
	.site-footer .copyright-text, .site-footer .link {
		width: auto;
		font-size: 16px;
	}
	.features-table-block {
		padding: 0;
	}
	.features-table-block td img {
		width: 24px;
	}
	.features-table-block table td::before {
		padding-left: 8px;
		font-size: 18px;
	}
	.features-table-block table td.t-score::before, .features-table-block table td.experian::before, .features-table-block table td.equifax::before, .features-table-block table td.dnb::before {
		background-position: left 8px center;
	}
	.features-table-block table td.t-score::before {
		background-size: 60px;
	}
	.features-table-block table td.experian::before {
		background-size: 80px;
	}
	.features-table-block table td.equifax::before {
		background-size: 60px;
	}
	.features-table-block table td.dnb::before {
		background-size: 100px;
	}
	.newslatter-block p {
		max-width: 320px;
		margin: 0 auto;
	}
	.newslatter-block p br {
		display: none;
	}
	.offer-option-list {
		margin: 0 auto;
		max-width: 320px;
	}
	.offer-option-list .offer-option-item {
		width: 100%;
		margin: 8px 0;
	}
	.offer-option-list .offer-option-item br {
		display: none;
	}
	.offer-option-list .offer-option-item img {
		width: 32px;
	}
	.offer-section .star {
		bottom: 20px;
	}
}
@media (max-width: 359px) {
	.site-header .logo {
		max-width: 80px;
	}
	.site-header .btn + .btn {
		margin-left: 6px;
	}
	.chart-block .chart-content {
		max-width: 190px;
		bottom: 15px;
	}
	.chart-block .chart-content h2 {
		font-size: 16px;
	}
	.site-footer .logo img {
		width: 80px;
	}
	.site-footer .copyright-text, .site-footer .link {
		font-size: 14px;
	}
}