/* Filter Grayscale */
/* Clip path */
/* Transition */
/* Border radius */
/* CLEAR COTNENT */
.cl:before,
.cl:after {
    display: table;
    content: " ";
}

.cl:after {
    clear: both;
}

.cl {
    clear: both;
}

/* IMAGES */
.img-full {
    width: 100%;
    display: block;
}

.img-auto {
    margin: auto;
}

/* HR Lines*/
hr {
    margin: 0px;
    border: 0;
    border-top: 1px solid rgba(30, 30, 47, 0.1);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

/* BORDER RADIUS  */
.border-radius-15 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
@media screen and (min-width: 767px) {
    .border-radius-15 {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
    }
}

/* DISPLAY */
.hide {
    display: none;
}

.show-lg,
.show-md,
.show-sm,
.show-xs {
    display: none;
}

@media screen and (max-width: 1200px) {
    .show-lg {
        display: block;
    }
    .hide-lg {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .show-md {
        display: block;
    }
    .hide-md {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .show-sm {
        display: block;
    }
    .hide-sm {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .show-xs {
        display: block;
    }
    .hide-xs {
        display: none;
    }
}
/* TEXT ALIGN */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

@media screen and (max-width: 992px) {
    .text-center-md {
        text-align: center;
    }
    .text-left-md {
        text-align: left;
    }
    .text-right-md {
        text-align: right;
    }
}
@media screen and (max-width: 767px) {
    .text-center-sm {
        text-align: center;
    }
    .text-left-sm {
        text-align: left;
    }
    .text-right-sm {
        text-align: right;
    }
}
@media screen and (max-width: 600px) {
    .text-center-xs {
        text-align: center;
    }
    .text-left-xs {
        text-align: left;
    }
    .text-right-xs {
        text-align: right;
    }
}
/* TEXT TRANSFORM */
.text-upper {
    text-transform: uppercase;
}

/* BACKGROUND COLORS */
.bg-white {
    background-color: #fff;
}

.bg-violet-01 {
    background-color: rgba(108, 99, 255, 0.01);
}

.bg-violet-02 {
    background-color: rgba(108, 99, 255, 0.02);
}

.bg-violet-03 {
    background-color: rgba(108, 99, 255, 0.03);
}

.bg-violet-04 {
    background-color: rgba(108, 99, 255, 0.04);
}

.bg-violet-05 {
    background-color: rgba(108, 99, 255, 0.05);
}

.bg-black-01 {
    background-color: rgba(30, 30, 47, 0.01);
}

.bg-black-02 {
    background-color: rgba(30, 30, 47, 0.02);
}

.bg-black-03 {
    background-color: rgba(30, 30, 47, 0.03);
}

.bg-black-04 {
    background-color: rgba(30, 30, 47, 0.04);
}

.bg-black-05 {
    background-color: rgba(30, 30, 47, 0.05);
}

/* COLORS */
.color-violet {
    color: #6c63ff;
}

.color-black {
    color: #1e1e2f;
}

/* MARGINS */
.m-auto {
    margin: auto;
}

.mt-0 {
    margin-top: 0px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-160 {
    margin-top: 160px;
}

@media screen and (min-width: 767px) {
    .mt-20-negative {
        margin-top: -20px;
    }
    .mt-40-negative {
        margin-top: -40px;
    }
}
@media screen and (max-width: 992px) {
    .mt-0-md {
        margin-top: 0;
    }
    .mt-10-md {
        margin-top: 10px;
    }
    .mt-20-md {
        margin-top: 20px;
    }
    .mt-40-md {
        margin-top: 40px;
    }
    .mt-60-md {
        margin-top: 60px;
    }
    .mt-80-md {
        margin-top: 80px;
    }
}
@media screen and (max-width: 767px) {
    .mt-0-sm {
        margin-top: 0;
    }
    .mt-10-sm {
        margin-top: 10px;
    }
    .mt-20-sm {
        margin-top: 20px;
    }
    .mt-40-sm {
        margin-top: 40px;
    }
    .mt-60-sm {
        margin-top: 60px;
    }
    .mt-80-sm {
        margin-top: 80px;
    }
}
@media screen and (max-width: 600px) {
    .mt-0-xs {
        margin-top: 0;
    }
    .mt-10-xs {
        margin-top: 10px;
    }
    .mt-20-xs {
        margin-top: 20px;
    }
    .mt-40-xs {
        margin-top: 40px;
    }
    .mt-60-xs {
        margin-top: 60px;
    }
    .mt-80-xs {
        margin-top: 80px;
    }
}
.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-160 {
    margin-bottom: 160px;
}

@media screen and (min-width: 767px) {
    .mb-20-negative {
        margin-bottom: -20px;
    }
    .mb-40-negative {
        margin-bottom: -40px;
    }
}
@media screen and (max-width: 1200px) {
    .mb-0-lg {
        margin-bottom: 0;
    }
    .mb-10-lg {
        margin-bottom: 10px;
    }
    .mb-20-lg {
        margin-bottom: 20px;
    }
    .mb-40-lg {
        margin-bottom: 40px;
    }
    .mb-60-lg {
        margin-bottom: 60px;
    }
    .mb-80-lg {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 992px) {
    .mb-0-md {
        margin-bottom: 0;
    }
    .mb-10-md {
        margin-bottom: 10px;
    }
    .mb-20-md {
        margin-bottom: 20px;
    }
    .mb-40-md {
        margin-bottom: 40px;
    }
    .mb-60-md {
        margin-bottom: 60px;
    }
    .mb-80-md {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 767px) {
    .mb-0-sm {
        margin-bottom: 0;
    }
    .mb-10-sm {
        margin-bottom: 10px;
    }
    .mb-20-sm {
        margin-bottom: 20px;
    }
    .mb-40-sm {
        margin-bottom: 40px;
    }
    .mb-60-sm {
        margin-bottom: 60px;
    }
    .mb-80-sm {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 600px) {
    .mb-0-xs {
        margin-bottom: 0;
    }
    .mb-10-xs {
        margin-bottom: 10px;
    }
    .mb-20-xs {
        margin-bottom: 20px;
    }
    .mb-40-xs {
        margin-bottom: 40px;
    }
    .mb-60-xs {
        margin-bottom: 60px;
    }
    .mb-80-xs {
        margin-bottom: 80px;
    }
}
/* PADDINGS */
.pt-0 {
    padding-top: 0px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-160 {
    padding-top: 160px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-160 {
    padding-bottom: 160px;
}

.padded20 {
    padding: 20px 0px;
}

.padded40 {
    padding: 20px 0px;
}
@media screen and (min-width: 600px) {
    .padded40 {
        padding: 40px 0px;
    }
}

.padded60,
.padded80,
.padded100,
.padded120,
.padded140,
.padded160 {
    padding: 40px 0px;
}

@media screen and (min-width: 992px) {
    .padded60 {
        padding: 60px 0px;
    }
    .padded80 {
        padding: 80px 0px;
    }
    .padded100 {
        padding: 100px 0px;
    }
    .padded120 {
        padding: 120px 0px;
    }
    .padded140 {
        padding: 140px 0px;
    }
    .padded160 {
        padding: 160px 0px;
    }
}
/* FONT WEIGHTS */
.font100 {
    font-weight: 100;
}

.font200 {
    font-weight: 200;
}

.font300 {
    font-weight: 300;
}

.font400 {
    font-weight: 400;
}

.font500 {
    font-weight: 500;
}

.font600 {
    font-weight: 600;
}

.font700 {
    font-weight: 700;
}

.font800 {
    font-weight: 800;
}

.font900 {
    font-weight: 900;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-style: normal;
    color: #1e1e2f;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
}

body.no-scroll {
    overflow: hidden;
}

html {
    height: 100%;
}

section,
header,
footer {
    position: relative;
    outline: 0;
    border: 0;
}

@media screen and (max-width: 767px) {
    section {
        overflow: hidden;
    }
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: rgba(30, 30, 47, 0.1);
}

::-webkit-scrollbar-thumb {
    background-color: #6c63ff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6c63ff;
}

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

b,
strong {
    font-weight: 700;
}

i,
em {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
    margin: 0;
    color: #1e1e2f;
    z-index: 1;
    position: relative;
    margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
    h1,
    h2,
    h3,
    h4,
    h5 {
        margin-bottom: 20px;
    }
}

h1,
.h1 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
}
@media screen and (min-width: 992px) {
    h1,
    .h1 {
        font-size: 34px;
        line-height: 42px;
    }
}
@media screen and (min-width: 1470px) {
    h1,
    .h1 {
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (min-width: 1600px) {
    h1,
    .h1 {
        font-size: 58px;
        line-height: 68px;
    }
}

h2,
.h2 {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
}
@media screen and (min-width: 992px) {
    h2,
    .h2 {
        font-size: 28px;
        line-height: 34px;
    }
}
@media screen and (min-width: 1470px) {
    h2,
    .h2 {
        font-size: 32px;
        line-height: 38px;
    }
}
@media screen and (min-width: 1600px) {
    h2,
    .h2 {
        font-size: 36px;
        line-height: 42px;
    }
}

h3,
.h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}
@media screen and (min-width: 992px) {
    h3,
    .h3 {
        font-size: 22px;
        line-height: 36px;
    }
}
@media screen and (min-width: 1470px) {
    h3,
    .h3 {
        font-size: 28px;
        line-height: 34px;
    }
}
@media screen and (min-width: 1600px) {
    h3,
    .h3 {
        font-size: 32px;
        line-height: 38px;
    }
}

h4,
.h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
@media screen and (min-width: 992px) {
    h4,
    .h4 {
        font-size: 20px;
        line-height: 26px;
    }
}
@media screen and (min-width: 1470px) {
    h4,
    .h4 {
        font-size: 22px;
        line-height: 36px;
    }
}

h5,
.h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
@media screen and (min-width: 992px) {
    h5,
    .h5 {
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (min-width: 1470px) {
    h5,
    .h5 {
        font-size: 20px;
        line-height: 26px;
    }
}

p {
    font-size: 16px;
    line-height: 28px;
    position: relative;
    z-index: 1;
    font-weight: 400;
    color: rgba(30, 30, 47, 0.7);
    margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
    p {
        margin-bottom: 20px;
        line-height: 30px;
    }
}
@media screen and (min-width: 1470px) {
    p {
        font-size: 18px;
    }
}
p a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: underline;
    color: #6c63ff;
}
@media screen and (min-width: 767px) {
    p a {
        margin-bottom: 20px;
        line-height: 30px;
    }
}
@media screen and (min-width: 1470px) {
    p a {
        font-size: 18px;
    }
}

.small {
    font-size: 12px;
    line-height: 18px;
    color: rgba(30, 30, 47, 0.7);
}
@media screen and (min-width: 767px) {
    .small {
        font-size: 14px;
        line-height: 22px;
    }
}
.small a {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: underline;
    color: #6c63ff;
}
@media screen and (min-width: 767px) {
    .small a {
        font-size: 14px;
        line-height: 22px;
    }
}

.container {
    width: auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 767px) {
    .container {
        width: 740px;
    }
}
@media screen and (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media screen and (min-width: 1470px) {
    .container {
        width: 1270px;
    }
}
@media screen and (min-width: 1600px) {
    .container {
        width: 1430px;
    }
}
@media screen and (min-width: 1800px) {
    .container {
        width: 1430px;
    }
}
@media screen and (min-width: 992px) {
    .container.container-sm {
        width: 970px;
    }
}
@media screen and (min-width: 1800px) {
    .container.container-lg {
        width: 1700px;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}
.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xl-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xl-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xl-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xl-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xl-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xl-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xl-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xl-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xl-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xl-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xl-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xl-12 {
    position: relative;
    min-height: 1px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media screen and (min-width: 767px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}
@media screen and (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}
@media screen and (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}
@media screen and (min-width: 1600px) {
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12 {
        float: left;
    }
    .col-xl-12 {
        width: 100%;
    }
    .col-xl-11 {
        width: 91.66666667%;
    }
    .col-xl-10 {
        width: 83.33333333%;
    }
    .col-xl-9 {
        width: 75%;
    }
    .col-xl-8 {
        width: 66.66666667%;
    }
    .col-xl-7 {
        width: 58.33333333%;
    }
    .col-xl-6 {
        width: 50%;
    }
    .col-xl-5 {
        width: 41.66666667%;
    }
    .col-xl-4 {
        width: 33.33333333%;
    }
    .col-xl-3 {
        width: 25%;
    }
    .col-xl-2 {
        width: 16.66666667%;
    }
    .col-xl-1 {
        width: 8.33333333%;
    }
    .col-xl-pull-12 {
        right: 100%;
    }
    .col-xl-pull-11 {
        right: 91.66666667%;
    }
    .col-xl-pull-10 {
        right: 83.33333333%;
    }
    .col-xl-pull-9 {
        right: 75%;
    }
    .col-xl-pull-8 {
        right: 66.66666667%;
    }
    .col-xl-pull-7 {
        right: 58.33333333%;
    }
    .col-xl-pull-6 {
        right: 50%;
    }
    .col-xl-pull-5 {
        right: 41.66666667%;
    }
    .col-xl-pull-4 {
        right: 33.33333333%;
    }
    .col-xl-pull-3 {
        right: 25%;
    }
    .col-xl-pull-2 {
        right: 16.66666667%;
    }
    .col-xl-pull-1 {
        right: 8.33333333%;
    }
    .col-xl-pull-0 {
        right: auto;
    }
    .col-xl-push-12 {
        left: 100%;
    }
    .col-xl-push-11 {
        left: 91.66666667%;
    }
    .col-xl-push-10 {
        left: 83.33333333%;
    }
    .col-xl-push-9 {
        left: 75%;
    }
    .col-xl-push-8 {
        left: 66.66666667%;
    }
    .col-xl-push-7 {
        left: 58.33333333%;
    }
    .col-xl-push-6 {
        left: 50%;
    }
    .col-xl-push-5 {
        left: 41.66666667%;
    }
    .col-xl-push-4 {
        left: 33.33333333%;
    }
    .col-xl-push-3 {
        left: 25%;
    }
    .col-xl-push-2 {
        left: 16.66666667%;
    }
    .col-xl-push-1 {
        left: 8.33333333%;
    }
    .col-xl-push-0 {
        left: auto;
    }
    .col-xl-offset-12 {
        margin-left: 100%;
    }
    .col-xl-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-xl-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-xl-offset-9 {
        margin-left: 75%;
    }
    .col-xl-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-xl-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-xl-offset-6 {
        margin-left: 50%;
    }
    .col-xl-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-xl-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-xl-offset-3 {
        margin-left: 25%;
    }
    .col-xl-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-xl-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-xl-offset-0 {
        margin-left: 0%;
    }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.row:after {
    clear: both;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: block;
    background-color: #fff;
    border-bottom: 1px solid rgba(30, 30, 47, 0.1);
}
.header .container {
    height: 80px;
}
.header-logo {
    width: 140px;
    height: auto;
    position: absolute;
    z-index: 2;
    left: 15px;
    top: 0px;
    bottom: 0;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
}
@media screen and (min-width: 600px) {
    .header-logo {
        width: 160px;
    }
}
@media screen and (min-width: 1470px) {
    .header-logo {
        width: 160px;
    }
}
.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.header-menu {
    position: relative;
    display: block;
    height: 80px;
    z-index: 1;
    padding-left: 160px;
}
@media screen and (min-width: 600px) {
    .header-menu {
        padding-left: 200px;
    }
}
@media screen and (min-width: 767px) {
    .header-menu {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1470px) {
    .header-menu {
        padding-left: 260px;
    }
}
.header-menu-l {
    position: relative;
    display: inline-block;
}
@media screen and (min-width: 767px) {
    .header-menu-l {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
    }
}
.header-menu-r {
    position: relative;
    padding: 15px;
}
@media screen and (min-width: 767px) {
    .header-menu-r {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        padding: 0px;
    }
}
@media screen and (max-width: 767px) {
    .header-menu-r {
        display: block;
        position: fixed;
        top: 80px;
        right: -280px;
        bottom: 0;
        width: 280px;
        z-index: 20;
        background-color: #fff;
        opacity: 0;
        -webkit-transition: all 200ms ease 0ms;
        -moz-transition: all 200ms ease 0ms;
        -o-transition: all 200ms ease 0ms;
        transition: all 200ms ease 0ms;
    }
}
.header-menu-r-show {
    right: 0px;
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-tools {
    display: block;
    position: relative;
}
@media screen and (min-width: 1200px) {
    .header-menu-tools {
        margin-right: 10px;
    }
}
.header-menu-tools:after,
.header-menu-tools:before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(30, 30, 47, 0.1);
    height: 48px;
}
.header-menu-tools:after {
    left: 0;
}
.header-menu-tools:before {
    right: 0;
    background-color: transparent;
}
@media screen and (min-width: 1200px) {
    .header-menu-tools:before {
        background-color: rgba(30, 30, 47, 0.1);
    }
}
.header-menu-tools > a {
    font-size: 14px;
    line-height: 22px;
    color: #6c63ff;
    position: relative;
    display: block;
    text-decoration: none;
    padding: 30px 16px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1600px) {
    .header-menu-tools > a {
        font-size: 16px;
        padding: 30px 24px;
    }
}
.header-menu-tools > a span {
    position: relative;
    display: block;
    padding-right: 18px;
}
.header-menu-tools > a span:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0px;
    height: 10px;
    width: 10px;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-arrow-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
}
.header-menu-tools > a:hover,
.header-menu-tools > a:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-main,
.header-menu-help {
    position: relative;
    text-align: center;
}
@media screen and (min-width: 767px) {
    .header-menu-main,
    .header-menu-help {
        text-align: initial;
    }
}
.header-menu-main > ul,
.header-menu-help > ul {
    position: relative;
}
.header-menu-main > ul > li,
.header-menu-help > ul > li {
    position: relative;
    display: block;
}
@media screen and (min-width: 767px) {
    .header-menu-main > ul > li,
    .header-menu-help > ul > li {
        display: inline-block;
    }
}
.header-menu-main > ul > li > a,
.header-menu-help > ul > li > a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    display: block;
    color: rgba(30, 30, 47, 0.7);
    padding: 12px;
    position: relative;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .header-menu-main > ul > li > a,
    .header-menu-help > ul > li > a {
        padding: 30px 8px;
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (min-width: 1600px) {
    .header-menu-main > ul > li > a,
    .header-menu-help > ul > li > a {
        font-size: 16px;
        padding: 30px 14px;
    }
}
.header-menu-main > ul > li > a:hover,
.header-menu-main > ul > li > a:focus,
.header-menu-help > ul > li > a:hover,
.header-menu-help > ul > li > a:focus {
    color: #1e1e2f;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-main {
    display: none;
}
@media screen and (min-width: 1200px) {
    .header-menu-main {
        display: block;
    }
}
.header-menu-help > ul > li > a {
    color: #1e1e2f;
}
.header-menu-cta {
    position: relative;
    text-align: center;
    margin-top: 15px;
}
@media screen and (min-width: 767px) {
    .header-menu-cta {
        text-align: initial;
        margin-left: 10px;
        margin-top: 0px;
    }
}
.header-menu-cta:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background-color: rgba(30, 30, 47, 0.1);
    height: 1px;
}
@media screen and (min-width: 767px) {
    .header-menu-cta:after {
        height: 48px;
        width: 1px;
        bottom: 0;
    }
}
.header-menu-cta > ul {
    position: relative;
}
.header-menu-cta > ul > li {
    position: relative;
    display: block;
}
@media screen and (min-width: 767px) {
    .header-menu-cta > ul > li {
        display: inline-block;
    }
}
.header-menu-cta > ul > li.cta-login > a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    display: inline-block;
    color: #6c63ff;
    padding: 12px;
    position: relative;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .header-menu-cta > ul > li.cta-login > a {
        font-size: 14px;
        padding: 30px 16px;
        line-height: 22px;
    }
}
@media screen and (min-width: 1600px) {
    .header-menu-cta > ul > li.cta-login > a {
        padding: 30px 24px;
        font-size: 16px;
    }
}
.header-menu-cta > ul > li.cta-login > a:hover,
.header-menu-cta > ul > li.cta-login > a:focus {
    color: #1e1e2f;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-cta > ul > li.cta-btn .btn {
    width: 100%;
}
@media screen and (min-width: 767px) {
    .header-menu-cta > ul > li.cta-btn .btn {
        width: auto;
    }
}
.header-menu-mobile {
    position: fixed;
    top: 0;
    right: 0px;
    width: 80px;
    height: 80px;
    display: block;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .header-menu-mobile {
        display: none;
    }
}
.header-menu-mobile span {
    width: 30px;
    height: 2px;
    display: block;
    background-color: #1e1e2f;
    position: absolute;
    right: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-mobile span:nth-child(1) {
    top: 28px;
}
.header-menu-mobile span:nth-child(2) {
    top: 38px;
}
.header-menu-mobile span:nth-child(3) {
    top: 48px;
    width: 15px;
}
.header-menu-mobile.header-mobile-menu-close span:nth-child(1) {
    top: 38px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-mobile.header-mobile-menu-close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.header-menu-mobile.header-mobile-menu-close span:nth-child(3) {
    opacity: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.header + section {
    margin-top: 80px;
}

.footer {
    background-color: #1e1e2f;
    padding-top: 20px;
}
@media screen and (min-width: 600px) {
    .footer {
        padding-top: 40px;
    }
}
@media screen and (min-width: 992px) {
    .footer {
        padding-top: 60px;
    }
}
.footer-links {
    position: relative;
    display: grid;
    align-items: start;
    row-gap: 30px;
    column-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 600px) {
    .footer-links {
        padding-left: 120px;
    }
}
@media screen and (min-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (min-width: 1600px) {
    .footer-links {
        padding-left: 160px;
    }
}
@media screen and (min-width: 600px) {
    .footer-links:after {
        content: "";
        position: absolute;
        top: 0;
        left: 15px;
        z-index: 1;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        background-size: 66px 230px;
        width: 66px;
        height: 230px;
    }
}
.footer-links-item {
    position: relative;
}
.footer-links-item h1,
.footer-links-item h2,
.footer-links-item h3,
.footer-links-item h4,
.footer-links-item h5 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}
.footer-links-item ul {
    position: relative;
}
.footer-links-item ul > li {
    position: relative;
}
.footer-links-item ul > li > a {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 12px;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .footer-links-item ul > li > a {
        padding-bottom: 16px;
    }
}
@media screen and (min-width: 992px) {
    .footer-links-item ul > li > a {
        font-size: 16px;
        padding-bottom: 22px;
    }
}
.footer-links-item ul > li > a:hover,
.footer-links-item ul > li > a:focus {
    color: #fff;
    padding-left: 4px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item ul > li:last-child > a {
    padding-bottom: 0;
}
.footer-links-item-info {
    position: relative;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item-info:last-child {
    margin-bottom: 0;
}
.footer-links-item-info p {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item-info p:nth-child(1) {
    font-weight: 500;
}
.footer-links-item-info p:nth-child(2) {
    font-weight: 300;
}
.footer-links-item-info p a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item-info p a:hover,
.footer-links-item-info p a:focus {
    color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item-info-line {
    border-left: 1px solid rgba(30, 30, 47, 0.1);
    padding-left: 10px;
}
@media screen and (min-width: 1200px) {
    .footer-links-item-info-line {
        padding-left: 20px;
    }
}
.footer-links-item-info-line:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    display: block;
}
.footer-links-item-info:hover,
.footer-links-item-info:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-links-item-info:hover p,
.footer-links-item-info:focus p {
    color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.footer-options {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0px;
    margin-top: 20px;
}
@media screen and (min-width: 600px) {
    .footer-options {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        column-gap: 20px;
        justify-content: space-between;
    }
}
@media screen and (min-width: 767px) {
    .footer-options {
        padding: 30px 0px;
        margin-top: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .footer-options {
        column-gap: 30px;
    }
}
@media screen and (min-width: 1470px) {
    .footer-options {
        column-gap: 60px;
    }
}
.footer-options-item {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.footer-options-item:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 600px) {
    .footer-options-item {
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 1200px) {
    .footer-options-item {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        column-gap: 20px;
    }
}
.footer-options-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.footer-options-item-secure-text {
    padding-left: 22px;
}
.footer-options-item-secure-text:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-secure-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.5;
}
.footer-options-item .form-dropdown-custom {
    width: 100%;
}
.footer-options-item:last-child {
    margin-left: auto;
    justify-content: flex-end;
}
.footer-copyright {
    position: relative;
    background-color: #fff;
    text-align: center;
    display: block;
}
.footer-copyright p {
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 18px;
    color: rgba(30, 30, 47, 0.7);
    padding: 5px 0px;
}
@media screen and (min-width: 600px) {
    .footer-copyright p {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 0px;
    }
}
@media screen and (min-width: 767px) {
    .footer-copyright p {
        padding: 15px 0px;
    }
}

::-webkit-input-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(30, 30, 47, 0.4);
}
@media screen and (min-width: 767px) {
    ::-webkit-input-placeholder {
        font-size: 18px;
    }
}

::-moz-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(30, 30, 47, 0.4);
}
@media screen and (min-width: 767px) {
    ::-moz-placeholder {
        font-size: 18px;
    }
}

:-ms-input-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(30, 30, 47, 0.4);
}
@media screen and (min-width: 767px) {
    :-ms-input-placeholder {
        font-size: 18px;
    }
}

:-moz-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(30, 30, 47, 0.4);
}
@media screen and (min-width: 767px) {
    :-moz-placeholder {
        font-size: 18px;
    }
}

.form-control {
    font-family: "Poppins", sans-serif;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
    outline: 0;
    background-color: #fff;
    padding: 8px 10px;
    border: 0;
    border: 1px solid rgba(30, 30, 47, 0.2);
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #1e1e2f;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
@media screen and (min-width: 600px) {
    .form-control {
        font-size: 16px;
    }
}
@media screen and (min-width: 767px) {
    .form-control {
        padding: 12px 18px;
        font-size: 18px;
        line-height: 30px;
        -webkit-border-radius: 9px;
        -moz-border-radius: 9px;
        -o-border-radius: 9px;
        border-radius: 9px;
    }
}
.form-control.form-control-success {
    border-color: #6c63ff;
    background-image: url(../../assets/images/icons/icn-check-violet.svg);
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-size: 14px 14px;
}
@media screen and (min-width: 767px) {
    .form-control.form-control-success {
        background-size: 18px 18px;
        background-position: center right 18px;
    }
}
.form-control:hover,
.form-control:focus {
    border-color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
@media screen and (min-width: 767px) {
    textarea.form-control {
        min-height: 160px;
    }
}
@media screen and (min-width: 992px) {
    textarea.form-control {
        min-height: 180px;
    }
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}
@media screen and (min-width: 600px) {
    .form-group {
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 992px) {
    .form-group {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 1470px) {
    .form-group {
        margin-bottom: 25px;
    }
}
.form-group .form-label {
    font-weight: 500;
    display: block;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
    color: #1e1e2f;
}
@media screen and (min-width: 600px) {
    .form-group .form-label {
        margin-bottom: 5px;
    }
}
@media screen and (min-width: 767px) {
    .form-group .form-label {
        font-size: 16px;
        line-height: 24px;
    }
}
.form-group-with-icn {
    position: relative;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-group-with-icn img {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    width: 20px;
    height: auto;
    display: block;
    opacity: 0.4;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .form-group-with-icn img {
        width: 28px;
        left: 18px;
    }
}
.form-group-with-icn .form-control {
    padding-left: 36px;
}
@media screen and (min-width: 767px) {
    .form-group-with-icn .form-control {
        padding-left: 58px;
    }
}
.form-group:hover,
.form-group:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-group:hover .form-group-with-icn,
.form-group:focus .form-group-with-icn {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-group:hover .form-group-with-icn img,
.form-group:focus .form-group-with-icn img {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.form-group-2 {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    column-gap: 15px;
}
@media screen and (min-width: 767px) {
    .form-group-2 {
        column-gap: 25px;
    }
}
.form-group-2 .form-group {
    flex-basis: 100%;
}

.form-dropdown-custom {
    position: relative;
}
.form-dropdown-custom > a {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #1e1e2f;
    color: #fff !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding: 6px 40px 6px 12px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    column-gap: 5px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .form-dropdown-custom > a {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .form-dropdown-custom > a {
        font-size: 18px;
        padding: 8px 64px 8px 18px;
        column-gap: 10px;
    }
}
.form-dropdown-custom > a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-arrow-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: block;
    opacity: 0.5;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .form-dropdown-custom > a:after {
        background-size: 12px 12px;
        width: 12px;
        height: 12px;
    }
}
@media screen and (min-width: 1200px) {
    .form-dropdown-custom > a:after {
        right: 18px;
    }
}
.form-dropdown-custom > a img {
    width: 24px;
    height: auto;
    display: block;
}
.form-dropdown-custom > a:hover,
.form-dropdown-custom > a:focus {
    border-color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-dropdown-custom > a:hover:after,
.form-dropdown-custom > a:focus:after {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-dropdown-custom ul {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 2;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
@media screen and (min-width: 767px) {
    .form-dropdown-custom ul {
        bottom: 44px;
    }
}
.form-dropdown-custom ul > li {
    position: relative;
}
.form-dropdown-custom ul > li > a {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    column-gap: 5px;
    font-size: 14px;
    line-height: 24px;
    color: rgba(30, 30, 47, 0.7);
    padding: 4px 10px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .form-dropdown-custom ul > li > a {
        font-size: 16px;
        padding: 6px 14px;
        column-gap: 10px;
    }
}
.form-dropdown-custom ul > li > a img {
    width: 20px;
    height: auto;
    display: block;
}
@media screen and (min-width: 767px) {
    .form-dropdown-custom ul > li > a img {
        width: 24px;
    }
}
.form-dropdown-custom ul > li > a:hover,
.form-dropdown-custom ul > li > a:focus {
    color: #1e1e2f;
    background-color: rgba(30, 30, 47, 0.04);
    padding-left: 16px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.form-dropdown-custom.form-dropdown-custom-is-open > a:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.btn {
    font-family: "Poppins", sans-serif;
    outline: 0;
    border: 1px solid transparent;
    text-align: center;
    font-weight: 500;
    padding: 6px 12px;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    /*Primary*/
    /*Black*/
    /*With icon*/
    /*Sizes*/
    /*Block*/
}
@media screen and (min-width: 767px) {
    .btn {
        font-size: 18px;
        padding: 8px 24px;
    }
}
.btn span {
    position: relative;
    z-index: 2;
    text-align: center;
}
.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 0;
    z-index: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.btn:hover,
.btn:focus {
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.btn:hover:after,
.btn:focus:after {
    width: 100%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.btn.btn-primary {
    background-color: #6c63ff;
    color: #fff;
    border-color: #6c63ff;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: #fff;
    border-color: #1e1e2f;
}
.btn.btn-primary:hover:after,
.btn.btn-primary:focus:after {
    background-color: #1e1e2f;
}
.btn.btn-black {
    background-color: #1e1e2f;
    color: #fff;
    border-color: #1e1e2f;
}
.btn.btn-black:hover,
.btn.btn-black:focus {
    color: #fff;
    border-color: #6c63ff;
}
.btn.btn-black:hover:after,
.btn.btn-black:focus:after {
    background-color: #6c63ff;
}
.btn.btn-icn span {
    padding-right: 26px;
}
@media screen and (min-width: 767px) {
    .btn.btn-icn span {
        padding-right: 32px;
    }
}
.btn.btn-icn span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-btn-arrow-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
}
@media screen and (min-width: 767px) {
    .btn.btn-icn span:after {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }
}
.btn.btn-icn-arrow span:after {
    background-image: url(../../assets/images/icons/icn-btn-arrow-white.svg);
}
.btn.btn-icn-premium span:after {
    background-image: url(../../assets/images/icons/icn-btn-premium.svg);
}
@media screen and (min-width: 767px) {
    .btn.btn-lg {
        padding: 8px 16px;
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        text-transform: uppercase;
    }
}
@media screen and (min-width: 1200px) {
    .btn.btn-lg {
        padding: 12px 22px;
        font-size: 24px;
        line-height: 30px;
    }
}
@media screen and (min-width: 767px) {
    .btn.btn-lg.btn-icn span {
        padding-right: 36px;
    }
}
@media screen and (min-width: 1200px) {
    .btn.btn-lg.btn-icn span {
        padding-right: 48px;
    }
}
@media screen and (min-width: 767px) {
    .btn.btn-lg.btn-icn span:after {
        background-size: 22px 22px;
        width: 22px;
        height: 22px;
    }
}
@media screen and (min-width: 1200px) {
    .btn.btn-lg.btn-icn span:after {
        background-size: 28px 28px;
        width: 28px;
        height: 28px;
    }
}
.btn.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: #6c63ff;
    cursor: pointer;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .btn-link {
        font-size: 18px;
    }
}
.btn-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #6c63ff;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.btn-link:before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    right: -20px;
    width: 10px;
    height: 10px;
    display: block;
    background-image: url(../../assets/images/icons/icn-btn-arrow-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .btn-link:before {
        background-size: 14px 14px;
        width: 14px;
        height: 14px;
        right: -26px;
    }
}
.btn-link:hover,
.btn-link:focus {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.btn-link:hover:before,
.btn-link:focus:before {
    right: -24px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .btn-link:hover:before,
    .btn-link:focus:before {
        right: -30px;
    }
}

.page-progress {
    position: fixed;
    top: 0px;
    left: 0;
    height: 3px;
    background-color: #6c63ff;
    min-width: 0px;
    z-index: 1001;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.hero {
    padding: 40px 0px;
    background-color: rgba(108, 99, 255, 0.03);
}
@media screen and (min-width: 767px) {
    .hero {
        padding: 60px 0px;
    }
}
@media screen and (min-width: 1600px) {
    .hero {
        padding: 80px 0px;
    }
}
@media screen and (min-width: 1800px) {
    .hero {
        padding: 100px 0px;
    }
}
.hero-content {
    position: relative;
}
@media screen and (min-width: 992px) {
    .hero-content {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
    }
}
@media screen and (min-width: 1200px) {
    .hero-content:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0;
        z-index: 0;
        background-image: url(../../assets/images/shapes/shape-hero-arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        display: block;
        background-size: 110px 37px;
        width: 110px;
        height: 37px;
    }
}
@media screen and (min-width: 1600px) {
    .hero-content:after {
        background-size: 220px 74px;
        width: 220px;
        height: 74px;
    }
}
@media screen and (min-width: 1200px) {
    .hero-content:after {
        -webkit-animation: hero-shape-anim 5s infinite;
        -moz-animation: hero-shape-anim 5s infinite;
        -o-animation: hero-shape-anim 5s infinite;
        animation: hero-shape-anim 5s infinite;
    }
    @-webkit-keyframes hero-shape-anim {
        0% {
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        50% {
            left: 30px;
            -webkit-transform: rotate(40deg);
            -moz-transform: rotate(40deg);
            -ms-transform: rotate(40deg);
            transform: rotate(40deg);
        }
        100% {
            left: 0px;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }
    @-moz-keyframes hero-shape-anim {
        0% {
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        50% {
            left: 30px;
            -webkit-transform: rotate(40deg);
            -moz-transform: rotate(40deg);
            -ms-transform: rotate(40deg);
            transform: rotate(40deg);
        }
        100% {
            left: 0px;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }
    @-o-keyframes hero-shape-anim {
        0% {
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        50% {
            left: 30px;
            -webkit-transform: rotate(40deg);
            -moz-transform: rotate(40deg);
            -ms-transform: rotate(40deg);
            transform: rotate(40deg);
        }
        100% {
            left: 0px;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }
    @keyframes hero-shape-anim {
        0% {
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        50% {
            left: 30px;
            -webkit-transform: rotate(40deg);
            -moz-transform: rotate(40deg);
            -ms-transform: rotate(40deg);
            transform: rotate(40deg);
        }
        100% {
            left: 0px;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }
}
.hero-content-l {
    position: relative;
    margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
    .hero-content-l {
        padding-right: 20px;
        width: 50%;
        margin-bottom: 0px;
    }
}
@media screen and (min-width: 1200px) {
    .hero-content-l {
        padding-right: 60px;
    }
}
@media screen and (min-width: 1470px) {
    .hero-content-l {
        padding-right: 120px;
    }
}
.hero-content-r {
    position: relative;
}
@media screen and (min-width: 992px) {
    .hero-content-r {
        width: 50%;
    }
}
.hero-upload {
    position: relative;
    width: 100%;
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 10px;
    background-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1200px) {
    .hero-upload {
        padding: 20px;
    }
}
.hero-upload-input {
    position: relative;
    background-color: rgba(108, 99, 255, 0.03);
    border: 2px dashed rgba(108, 99, 255, 0.2);
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
@media screen and (min-width: 1200px) {
    .hero-upload-input {
        padding: 40px 0px;
    }
}
.hero-upload-input-file {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload-input-file input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.hero-upload-input-file-placeholder {
    position: relative;
    padding: 90px 0px 0px 0px;
    font-size: 16px;
    line-height: 20px;
    color: #1e1e2f;
    font-weight: 400;
    text-align: center;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .hero-upload-input-file-placeholder {
        font-size: 20px;
        line-height: 24px;
    }
}
@media screen and (min-width: 1200px) {
    .hero-upload-input-file-placeholder {
        padding: 160px 0px 0px 0px;
        font-size: 26px;
        line-height: 32px;
    }
}
.hero-upload-input-file-placeholder span {
    font-weight: 700;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload-input-file-placeholder:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    background-image: url(../../assets/images/icons/icn-document.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 59px 64px;
    width: 59px;
    height: 64px;
    display: block;
    margin: auto;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1200px) {
    .hero-upload-input-file-placeholder:after {
        background-size: 118px 128px;
        width: 118px;
        height: 128px;
    }
}
.hero-upload-input-or {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
    opacity: 0.5;
    padding: 10px 0px;
}
@media screen and (min-width: 767px) {
    .hero-upload-input-or {
        width: 80%;
    }
}
@media screen and (min-width: 1200px) {
    .hero-upload-input-or {
        padding: 20px 0px;
    }
}
@media screen and (min-width: 1600px) {
    .hero-upload-input-or {
        width: 60%;
    }
}
.hero-upload-input-or:after,
.hero-upload-input-or:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #1e1e2f;
    height: 1px;
    width: 40%;
}
.hero-upload-input-or:after {
    left: 0;
}
.hero-upload-input-or:before {
    right: 0px;
}
.hero-upload-input-or span {
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #1e1e2f;
}
@media screen and (min-width: 1200px) {
    .hero-upload-input-or span {
        font-size: 20px;
        line-height: 20px;
    }
}
.hero-upload-input-button {
    position: relative;
    width: 100%;
    display: block;
}
@media screen and (min-width: 767px) {
    .hero-upload-input-button {
        width: 80%;
    }
}
@media screen and (min-width: 1600px) {
    .hero-upload-input-button {
        width: 60%;
    }
}
.hero-upload-options {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
@media screen and (min-width: 1470px) {
    .hero-upload-options {
        margin-top: 20px;
    }
}
.hero-upload-options-active {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    gap: 5px;
}
@media screen and (min-width: 767px) {
    .hero-upload-options-active {
        gap: 10px;
    }
}
@media screen and (min-width: 1470px) {
    .hero-upload-options-active {
        gap: 20px;
    }
}
@media screen and (min-width: 1600px) {
    .hero-upload-options-active {
        gap: 40px;
    }
}
@media screen and (min-width: 1800px) {
    .hero-upload-options-active {
        gap: 60px;
    }
}
.hero-upload-options-active > a {
    position: relative;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(108, 99, 255, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-active > a {
        width: 60px;
        height: 60px;
    }
}
.hero-upload-options-active > a img {
    width: 24px;
    height: auto;
    display: block;
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-active > a img {
        width: 40px;
    }
}
.hero-upload-options-active > a:hover,
.hero-upload-options-active > a:focus {
    background-color: rgba(108, 99, 255, 0.03);
    border-color: rgba(108, 99, 255, 0.3);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload-options-inactive {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 5px;
    align-items: center;
}
@media screen and (min-width: 767px) {
    .hero-upload-options-inactive {
        gap: 10px;
    }
}
.hero-upload-options-inactive-info {
    position: relative;
    text-align: center;
}
.hero-upload-options-inactive-info p {
    margin-bottom: 0px;
    color: #1e1e2f;
    font-size: 12px;
    line-height: 16px;
    display: block;
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-inactive-info p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
}
.hero-upload-options-inactive-info .inactive-text {
    position: relative;
    background-color: rgba(253, 216, 53, 0.2);
    border: 1px solid rgba(253, 216, 53, 0.4);
    padding: 2px 6px;
    color: #1e1e2f;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    display: block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-inactive-info .inactive-text {
        padding: 4px 12px;
        font-size: 14px;
        line-height: 14px;
    }
}
.hero-upload-options-inactive-image {
    display: none;
}
@media screen and (min-width: 420px) {
    .hero-upload-options-inactive-image {
        position: relative;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: 1px solid rgba(108, 99, 255, 0.2);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        -webkit-transition: all 200ms ease 0ms;
        -moz-transition: all 200ms ease 0ms;
        -o-transition: all 200ms ease 0ms;
        transition: all 200ms ease 0ms;
    }
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-inactive-image {
        width: 60px;
        height: 60px;
    }
}
.hero-upload-options-inactive-image img {
    width: 24px;
    height: auto;
    display: block;
}
@media screen and (min-width: 1200px) {
    .hero-upload-options-inactive-image img {
        width: 40px;
    }
}
.hero-upload:hover,
.hero-upload:focus {
    border-color: rgba(108, 99, 255, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload:hover .hero-upload-input,
.hero-upload:focus .hero-upload-input {
    background-color: rgba(108, 99, 255, 0.05);
    border-color: rgba(108, 99, 255, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload:hover .hero-upload-input-file-placeholder,
.hero-upload:focus .hero-upload-input-file-placeholder {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload:hover .hero-upload-input-file-placeholder span,
.hero-upload:focus .hero-upload-input-file-placeholder span {
    color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.hero-upload:hover .hero-upload-input-file-placeholder:after,
.hero-upload:focus .hero-upload-input-file-placeholder:after {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.accordion {
    position: relative;
    display: block;
}
.accordion .accordion-item {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(108, 99, 255, 0.2);
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .accordion .accordion-item {
        margin-bottom: 15px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
    }
}
.accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.accordion .accordion-item .accordion-item-title {
    cursor: pointer;
    padding: 8px 40px 8px 12px;
    position: relative;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .accordion .accordion-item .accordion-item-title {
        padding: 12px 40px 12px 18px;
    }
}
@media screen and (min-width: 992px) {
    .accordion .accordion-item .accordion-item-title {
        padding: 18px 50px 18px 24px;
    }
}
.accordion .accordion-item .accordion-item-title h1,
.accordion .accordion-item .accordion-item-title h2,
.accordion .accordion-item .accordion-item-title h3,
.accordion .accordion-item .accordion-item-title h4,
.accordion .accordion-item .accordion-item-title h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0px;
    color: rgba(30, 30, 47, 0.5);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .accordion .accordion-item .accordion-item-title h1,
    .accordion .accordion-item .accordion-item-title h2,
    .accordion .accordion-item .accordion-item-title h3,
    .accordion .accordion-item .accordion-item-title h4,
    .accordion .accordion-item .accordion-item-title h5 {
        font-size: 18px;
    }
}
@media screen and (min-width: 992px) {
    .accordion .accordion-item .accordion-item-title h1,
    .accordion .accordion-item .accordion-item-title h2,
    .accordion .accordion-item .accordion-item-title h3,
    .accordion .accordion-item .accordion-item-title h4,
    .accordion .accordion-item .accordion-item-title h5 {
        font-size: 20px;
        line-height: 26px;
    }
}
.accordion .accordion-item .accordion-item-title-arrow {
    position: absolute;
    top: 14px;
    right: 12px;
    width: 14px;
    height: 14px;
    display: block;
    background-image: url(../../assets/images/icons/icn-btn-arrow-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    opacity: 0.5;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .accordion .accordion-item .accordion-item-title-arrow {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
        top: 22px;
    }
}
.accordion .accordion-item.accordion-item-current {
    border-color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item.accordion-item-current .accordion-item-title {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item.accordion-item-current .accordion-item-title h1,
.accordion .accordion-item.accordion-item-current .accordion-item-title h2,
.accordion .accordion-item.accordion-item-current .accordion-item-title h3,
.accordion .accordion-item.accordion-item-current .accordion-item-title h4,
.accordion .accordion-item.accordion-item-current .accordion-item-title h5 {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item.accordion-item-current .accordion-item-title-arrow {
    opacity: 1;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item.accordion-item-current .accordion-item-content p {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item .accordion-item-content {
    display: none;
    padding: 0px 12px 8px 12px;
}
@media screen and (min-width: 767px) {
    .accordion .accordion-item .accordion-item-content {
        padding: 0px 18px 12px 18px;
    }
}
@media screen and (min-width: 992px) {
    .accordion .accordion-item .accordion-item-content {
        padding: 0px 24px 18px 24px;
    }
}
.accordion .accordion-item .accordion-item-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .accordion .accordion-item .accordion-item-content p {
        font-size: 16px;
        line-height: 28px;
    }
}
.accordion .accordion-item:hover,
.accordion .accordion-item:focus {
    border-color: rgba(30, 30, 47, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item:hover .accordion-item-title,
.accordion .accordion-item:focus .accordion-item-title {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item:hover .accordion-item-title h1,
.accordion .accordion-item:hover .accordion-item-title h2,
.accordion .accordion-item:hover .accordion-item-title h3,
.accordion .accordion-item:hover .accordion-item-title h4,
.accordion .accordion-item:hover .accordion-item-title h5,
.accordion .accordion-item:focus .accordion-item-title h1,
.accordion .accordion-item:focus .accordion-item-title h2,
.accordion .accordion-item:focus .accordion-item-title h3,
.accordion .accordion-item:focus .accordion-item-title h4,
.accordion .accordion-item:focus .accordion-item-title h5 {
    color: rgba(30, 30, 47, 0.7);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.accordion .accordion-item:hover .accordion-item-title-arrow,
.accordion .accordion-item:focus .accordion-item-title-arrow {
    opacity: 0.7;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.list-icons {
    position: relative;
}
.list-icons > li {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    color: #1e1e2f;
}
@media screen and (min-width: 1200px) {
    .list-icons > li {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 16px;
    }
}
.list-icons > li:last-child {
    padding-bottom: 0;
}
.list-icons > li img {
    width: 16px;
    height: auto;
    display: block;
    margin-right: 10px;
    flex: 0 0 auto;
}
@media screen and (min-width: 1200px) {
    .list-icons > li img {
        margin-right: 14px;
        width: 20px;
    }
}

.list-arrow {
    position: relative;
}
.list-arrow > li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .list-arrow > li {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 16px;
    }
}
@media screen and (min-width: 992px) {
    .list-arrow > li {
        font-size: 20px;
        line-height: 28px;
        padding-left: 34px;
    }
}
.list-arrow > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    background-image: url(../../assets/images/icons/icn-btn-arrow-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .list-arrow > li:after {
        background-size: 20px 20px;
        width: 20px;
        height: 20px;
    }
}
.list-arrow > li span {
    font-weight: 600;
}
.list-arrow > li:last-child {
    padding-bottom: 0;
}
.list-arrow > li:hover,
.list-arrow > li:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-arrow > li:hover:after,
.list-arrow > li:focus:after {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .list-arrow > li:hover:after,
    .list-arrow > li:focus:after {
        left: 4px;
    }
}

.list-payment-cards {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    gap: 5px;
}
@media screen and (min-width: 1200px) {
    .list-payment-cards {
        gap: 10px;
    }
}
.list-payment-cards > li {
    position: relative;
}
.list-payment-cards > li img {
    width: 32px;
    height: auto;
    display: block;
}
@media screen and (min-width: 1200px) {
    .list-payment-cards > li img {
        width: 40px;
    }
}

.list-check {
    position: relative;
}
.list-check > li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 10px;
    padding-left: 20px;
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .list-check > li {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (min-width: 767px) {
    .list-check > li {
        padding-left: 30px;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 14px;
    }
}
.list-check > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../../assets/images/icons/icn-check-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .list-check > li:after {
        top: 4px;
    }
}
@media screen and (min-width: 992px) {
    .list-check > li:after {
        background-size: 16px 16px;
        width: 16px;
        height: 16px;
    }
}
.list-check > li span {
    font-weight: 600;
}
.list-check > li:last-child {
    padding-bottom: 0;
}
.list-check > li:hover,
.list-check > li:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-check > li:hover:after,
.list-check > li:focus:after {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .list-check > li:hover:after,
    .list-check > li:focus:after {
        left: 4px;
    }
}

.list-check-anim {
    position: relative;
}
.list-check-anim > li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 18px;
    padding-left: 42px;
    color: rgba(30, 30, 47, 0.3);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .list-check-anim > li {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (min-width: 992px) {
    .list-check-anim > li {
        padding-left: 50px;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 28px;
    }
}
.list-check-anim > li span {
    position: absolute;
    left: 0;
    top: -4px;
    width: 32px;
    height: 32px;
    display: block;
}
@media screen and (min-width: 992px) {
    .list-check-anim > li span {
        width: 38px;
        height: 38px;
        top: -8px;
    }
}
.list-check-anim > li span:after,
.list-check-anim > li span:before {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.list-check-anim > li span:after {
    background-image: url(../../assets/images/icons/icn-check-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    width: 24px;
    height: 24px;
    background-color: rgba(108, 99, 255, 0.3);
    opacity: 0.1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .list-check-anim > li span:after {
        width: 28px;
        height: 28px;
        background-size: 16px 16px;
    }
}
.list-check-anim > li span:before {
    background-color: #fff;
    border: 1px solid rgba(30, 30, 47, 0.1);
}
.list-check-anim > li:last-child {
    padding-bottom: 0;
}
.list-check-anim > li.anim-finish {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-check-anim > li.anim-finish span:after {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-check-anim > li.anim-finish span:before {
    border-color: rgba(108, 99, 255, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-check-anim > li:hover,
.list-check-anim > li:focus {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.list-check-anim > li:hover:after,
.list-check-anim > li:focus:after {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 47, 0.7);
    z-index: 10;
    display: none;
}

.checkbox {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 10px;
    cursor: pointer;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .checkbox {
        gap: 15px;
    }
}
.checkbox input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.checkbox-mark {
    flex: 0 0 auto;
    white-space: nowrap;
    position: relative;
    width: 40px;
    height: 22px;
    display: block;
    border: 1px solid rgba(30, 30, 47, 0.1);
    background-color: #fff;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .checkbox-mark {
        width: 50px;
        height: 26px;
    }
}
.checkbox-mark:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    display: block;
    background-color: rgba(30, 30, 47, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .checkbox-mark:after {
        width: 20px;
        height: 20px;
    }
}
.checkbox-text {
    display: block;
    flex: 1;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #1e1e2f;
    opacity: 0.8;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .checkbox-text {
        font-size: 16px;
        line-height: 26px;
    }
}
.checkbox-text a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    text-decoration: underline;
    color: #6c63ff;
}
@media screen and (min-width: 767px) {
    .checkbox-text a {
        font-size: 16px;
        line-height: 26px;
    }
}
.checkbox input:checked + .checkbox-mark {
    background-color: #6c63ff;
    border-color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.checkbox input:checked + .checkbox-mark:after {
    left: 20px;
    background-color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .checkbox input:checked + .checkbox-mark:after {
        left: 26px;
    }
}
.checkbox input:checked + .checkbox-mark + .checkbox-text {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.tabs {
    position: relative;
}

.tabs-content {
    position: relative;
}
.tabs-content .tabs-content-item {
    display: none;
    position: relative;
}
.tabs-content .tabs-content-item-current {
    display: block;
}

.faq-tabs {
    position: relative;
}
.faq-tabs .tabs {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}
.faq-tabs .tabs > li {
    display: inline-block;
}
.faq-tabs .tabs > li > a {
    font-size: 16px;
    line-height: 24px;
    color: rgba(30, 30, 47, 0.7);
    font-weight: 400;
    padding: 6px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .faq-tabs .tabs > li > a {
        font-size: 18px;
        padding: 6px 10px;
    }
}
@media screen and (min-width: 992px) {
    .faq-tabs .tabs > li > a {
        font-size: 20px;
        line-height: 26px;
        padding: 8px 20px;
    }
}
.faq-tabs .tabs > li > a:after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 0px;
    background-color: #6c63ff;
    height: 2px;
    opacity: 0;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .faq-tabs .tabs > li > a:after {
        left: 10px;
        right: 10px;
    }
}
@media screen and (min-width: 992px) {
    .faq-tabs .tabs > li > a:after {
        left: 20px;
        right: 20px;
    }
}
.faq-tabs .tabs > li > a:hover,
.faq-tabs .tabs > li > a:focus {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.faq-tabs .tabs > li.current > a {
    color: #6c63ff;
}
.faq-tabs .tabs > li.current > a:after {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 47, 0.9);
    z-index: 1000;
    display: block;
}
.scanning-popup {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.scanning-popup-box {
    position: relative;
    padding: 30px 20px;
    width: auto;
    background-color: #fff;
    margin: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
@media screen and (min-width: 767px) {
    .scanning-popup-box {
        padding: 30px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: start;
    }
}
@media screen and (min-width: 992px) {
    .scanning-popup-box {
        width: 970px;
        padding: 50px 40px;
    }
}
@media screen and (min-width: 1470px) {
    .scanning-popup-box {
        padding: 60px 50px;
    }
}
@media screen and (min-width: 767px) {
    .scanning-popup-box p {
        font-size: 16px;
        line-height: 24px;
    }
}
.scanning-popup-box-l {
    position: relative;
    margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
    .scanning-popup-box-l {
        padding-right: 20px;
        width: 50%;
        margin-bottom: 0px;
    }
}
@media screen and (min-width: 1200px) {
    .scanning-popup-box-l {
        padding-right: 40px;
    }
}
@media screen and (min-width: 1470px) {
    .scanning-popup-box-l {
        padding-right: 60px;
    }
}
.scanning-popup-box-r {
    position: relative;
}
@media screen and (min-width: 767px) {
    .scanning-popup-box-r {
        padding-left: 40px;
        width: 50%;
    }
}
@media screen and (min-width: 1200px) {
    .scanning-popup-box-r {
        padding-left: 60px;
    }
}
@media screen and (min-width: 1470px) {
    .scanning-popup-box-r {
        padding-left: 80px;
    }
}
.scanning .scanning-steps {
    position: relative;
    display: block;
}
.scanning .scanning-steps > li {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
    color: rgba(30, 30, 47, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-steps > li {
        font-size: 18px;
        padding-left: 54px;
        margin-bottom: 34px;
    }
}
.scanning .scanning-steps > li:after {
    content: "";
    position: absolute;
    left: 20px;
    top: 36px;
    background-color: rgba(30, 30, 47, 0.2);
    bottom: -18px;
    width: 2px;
    display: block;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-steps > li:after {
        top: 40px;
        bottom: -24px;
    }
}
.scanning .scanning-steps > li:last-child:after {
    content: none;
}
.scanning .scanning-steps > li .scanning-steps-no {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    text-align: center;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    border: 1px solid rgba(30, 30, 47, 0.2);
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li .scanning-steps-no span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    width: 30px;
    height: 30px;
    color: rgba(30, 30, 47, 0.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li .scanning-steps-no span:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    z-index: -1;
    opacity: 0;
    background-color: #fff;
    border: 1px solid rgba(30, 30, 47, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li .scanning-steps-no span:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    z-index: 1;
    opacity: 0;
    background-image: url(../../assets/images/icons/icn-check-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li .scanning-steps-no:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    z-index: 0;
    opacity: 0;
    background-color: rgba(108, 99, 255, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.complete {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.complete .scanning-steps-no {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.complete .scanning-steps-no span {
    color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.complete .scanning-steps-no span:before {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.complete .scanning-steps-no span:after {
    opacity: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.current {
    color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.current .scanning-steps-no {
    border-color: rgba(108, 99, 255, 0.3);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.current .scanning-steps-no span {
    background-color: #6c63ff;
    border-color: #6c63ff;
    color: #fff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.current .scanning-steps-no span:after {
    opacity: 1;
    background-color: rgba(108, 99, 255, 0.2);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-steps > li.current .scanning-steps-no:after {
    opacity: 1;
}
.scanning .scanning-photo {
    position: relative;
    padding: 20px;
    display: block;
    overflow: hidden;
    z-index: 1;
    -webkit-box-shadow: 0px 12px 36px rgba(30, 30, 47, 0.2);
    -moz-box-shadow: 0px 12px 36px rgba(30, 30, 47, 0.2);
    box-shadow: 0px 12px 36px rgba(30, 30, 47, 0.2);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.scanning .scanning-photo img {
    display: block;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}
.scanning .scanning-photo-anim {
    position: absolute;
    height: 80px;
    display: block;
    left: 20px;
    right: 20px;
    top: 20px;
    z-index: 2;
    -webkit-animation: scanning-anim 6s infinite;
    -moz-animation: scanning-anim 6s infinite;
    -o-animation: scanning-anim 6s infinite;
    animation: scanning-anim 6s infinite;
}
@-webkit-keyframes scanning-anim {
    0% {
        top: 20px;
        opacity: 0;
    }
    50% {
        top: calc(100% - 100px);
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}
@-moz-keyframes scanning-anim {
    0% {
        top: 20px;
        opacity: 0;
    }
    50% {
        top: calc(100% - 100px);
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}
@-o-keyframes scanning-anim {
    0% {
        top: 20px;
        opacity: 0;
    }
    50% {
        top: calc(100% - 100px);
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}
@keyframes scanning-anim {
    0% {
        top: 20px;
        opacity: 0;
    }
    50% {
        top: calc(100% - 100px);
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}
.scanning .scanning-photo-anim:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-bottom: 4px solid #6c63ff;
    display: block;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(33, 118, 255, 0.18) 20%,
        rgba(33, 118, 255, 0.8) 100%
    );
}
.scanning .scanning-passed-list {
    position: relative;
    display: block;
}
.scanning .scanning-passed-list > li {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 6px;
    color: #1e1e2f;
    border-bottom: 1px solid rgba(30, 30, 47, 0.1);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-passed-list > li {
        font-size: 16px;
        padding-bottom: 8px;
        margin-bottom: 12px;
    }
}
.scanning .scanning-passed-list > li:last-child {
    margin-bottom: 0;
    border-bottom-color: transparent;
}
.scanning .scanning-passed-list > li span {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    padding-left: 20px;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-passed-list > li span {
        padding-left: 24px;
        font-size: 16px;
    }
}
.scanning .scanning-passed-list > li span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    display: block;
    bottom: 0;
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-passed-list > li span:after {
        width: 20px;
        height: 20px;
    }
}
.scanning .scanning-passed-list > li span:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    margin: auto;
    z-index: 1;
    background-image: url(../../assets/images/icons/icn-check-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .scanning .scanning-passed-list > li span:before {
        background-size: 10px 10px;
        width: 20px;
        height: 20px;
    }
}

.statistics {
    background-color: #6c63ff;
    z-index: 1;
}
@media screen and (min-width: 420px) {
    .statistics {
        height: 70px;
    }
}
.statistics-items {
    padding: 10px 0px;
}
@media screen and (min-width: 420px) {
    .statistics-items {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 70px;
        padding: 0;
    }
}
@media screen and (min-width: 767px) {
    .statistics-items {
        justify-content: center;
    }
}
@media screen and (min-width: 767px) {
    .statistics-items {
        gap: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .statistics-items {
        gap: 60px;
    }
}
@media screen and (min-width: 1470px) {
    .statistics-items {
        gap: 100px;
    }
}
.statistics-items:after,
.statistics-items:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 60px;
    width: 30px;
    height: 60px;
    display: block;
}
@media screen and (min-width: 767px) {
    .statistics-items:after,
    .statistics-items:before {
        width: 60px;
        height: 120px;
        background-size: 60px 120px;
    }
}
.statistics-items:after {
    left: 0;
    background-image: url(../../assets/images/shapes/shape-stat-left.svg);
}
.statistics-items:before {
    right: 0;
    background-image: url(../../assets/images/shapes/shape-stat-right.svg);
}
.statistics .statistic-item {
    position: relative;
    text-align: center;
    padding: 10px 0px;
}
@media screen and (min-width: 600px) {
    .statistics .statistic-item {
        padding: 0;
    }
}
@media screen and (min-width: 992px) {
    .statistics .statistic-item {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        gap: 10px;
    }
}
@media screen and (min-width: 1470px) {
    .statistics .statistic-item {
        gap: 15px;
    }
}
.statistics .statistic-item span {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}
@media screen and (min-width: 767px) {
    .statistics .statistic-item span {
        font-size: 24px;
        line-height: 24px;
    }
}
@media screen and (min-width: 992px) {
    .statistics .statistic-item span {
        margin-bottom: 0px;
    }
}
@media screen and (min-width: 1470px) {
    .statistics .statistic-item span {
        font-size: 34px;
        line-height: 34px;
    }
}
.statistics .statistic-item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    color: #fff;
    display: block;
    text-transform: lowercase;
}
@media screen and (min-width: 767px) {
    .statistics .statistic-item p {
        font-size: 16px;
        line-height: 16px;
    }
}
@media screen and (min-width: 1470px) {
    .statistics .statistic-item p {
        font-size: 20px;
        line-height: 20px;
    }
}

.tools-col-3 {
    position: relative;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 600px) {
    .tools-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width: 1200px) {
    .tools-col-3 {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width: 1470px) {
    .tools-col-3 {
        gap: 25px;
    }
}

.tools-col-4 {
    position: relative;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 600px) {
    .tools-col-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width: 1200px) {
    .tools-col-4 {
        gap: 20px;
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (min-width: 1470px) {
    .tools-col-4 {
        gap: 25px;
    }
}

.tool-item {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(30, 30, 47, 0.1);
    padding: 15px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1200px) {
    .tool-item {
        padding: 20px;
    }
}
.tool-item img {
    width: 48px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 1470px) {
    .tool-item img {
        width: 64px;
    }
}
.tool-item-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .tool-item-title {
        font-size: 22px;
        line-height: 28px;
    }
}
.tool-item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .tool-item p {
        font-size: 16px;
        line-height: 26px;
    }
}
.tool-item:hover,
.tool-item:focus {
    background-color: rgba(108, 99, 255, 0.02);
    border: 1px solid #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.tool-item:hover img,
.tool-item:focus img {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.tool-item:hover .tool-item-title,
.tool-item:focus .tool-item-title {
    color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.tool-item:hover p,
.tool-item:focus p {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.tools-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media screen and (min-width: 767px) {
    .tools-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
@media screen and (min-width: 1200px) {
    .tools-list {
        grid-template-columns: repeat(5, 1fr);
    }
}
.tools-list .tool-list-item {
    flex-basis: 100%;
}

.tool-list-item {
    position: relative;
    flex-basis: 100%;
}
.tool-list-item h1,
.tool-list-item h2,
.tool-list-item h3,
.tool-list-item h4,
.tool-list-item h5 {
    font-weight: 500;
    margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
    .tool-list-item h1,
    .tool-list-item h2,
    .tool-list-item h3,
    .tool-list-item h4,
    .tool-list-item h5 {
        margin-bottom: 15px;
    }
}
.tool-list-item ul {
    position: relative;
    display: block;
}
.tool-list-item ul > li {
    position: relative;
    display: block;
}
.tool-list-item ul > li > a {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    text-decoration: underline;
    color: #1e1e2f;
    padding-bottom: 12px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .tool-list-item ul > li > a {
        font-size: 18px;
        line-height: 24px;
        gap: 10px;
        padding-bottom: 18px;
    }
}
.tool-list-item ul > li > a img {
    width: 18px;
    height: auto;
    display: block;
}
@media screen and (min-width: 992px) {
    .tool-list-item ul > li > a img {
        width: 24px;
    }
}
.tool-list-item ul > li > a:hover,
.tool-list-item ul > li > a:focus {
    color: #6c63ff;
    padding-left: 2px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.tool-list-item ul > li:last-child > a {
    padding-bottom: 0;
}

.section-title-with-logo {
    position: relative;
}
.section-title-with-logo h1,
.section-title-with-logo h2,
.section-title-with-logo h3,
.section-title-with-logo h4,
.section-title-with-logo h5 {
    margin-bottom: 0;
}
.section-title-with-logo h1 img,
.section-title-with-logo h2 img,
.section-title-with-logo h3 img,
.section-title-with-logo h4 img,
.section-title-with-logo h5 img {
    width: 230px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.section-title-with-logo h1 span,
.section-title-with-logo h2 span,
.section-title-with-logo h3 span,
.section-title-with-logo h4 span,
.section-title-with-logo h5 span {
    display: inline-block;
    vertical-align: middle;
}

.cards {
    position: relative;
}
@media screen and (min-width: 992px) {
    .cards {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        gap: 15px;
    }
}
@media screen and (min-width: 1200px) {
    .cards {
        gap: 20px;
    }
}
@media screen and (min-width: 1470px) {
    .cards {
        gap: 25px;
    }
}
.cards .card-item {
    margin-bottom: 15px;
}
.cards .card-item:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 992px) {
    .cards .card-item {
        margin-bottom: 0;
    }
}

.card-item {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(30, 30, 47, 0.1);
    padding: 15px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .card-item {
        padding: 30px;
    }
}
.card-item-image {
    position: relative;
    display: block;
    margin-bottom: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-image {
        margin-bottom: 20px;
    }
}
.card-item-image img {
    width: 50%;
    height: auto;
    display: block;
    margin: auto;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-image img {
        width: 70%;
    }
}
.card-item-title {
    margin-bottom: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-title {
        margin-bottom: 10px;
    }
}
.card-item-title a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #1e1e2f;
    text-decoration: none;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-title a {
        font-size: 22px;
        line-height: 28px;
    }
}
.card-item-link {
    position: relative;
    display: block;
    text-align: right;
    margin-top: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-link {
        margin-top: 20px;
    }
}
.card-item-link a {
    width: 18px;
    height: 18px;
    background-image: url(../../assets/images/icons/icn-btn-arrow-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .card-item-link a {
        background-size: 24px 24px;
        width: 24px;
        height: 24px;
    }
}
.card-item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .card-item p {
        font-size: 16px;
        line-height: 26px;
    }
}
.card-item:hover,
.card-item:focus {
    background-color: rgba(108, 99, 255, 0.02);
    border: 1px solid #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.card-item:hover img,
.card-item:focus img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.card-item:hover .card-item-title a,
.card-item:focus .card-item-title a {
    color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.card-item:hover .card-item-link a,
.card-item:focus .card-item-link a {
    background-image: url(../../assets/images/icons/icn-btn-arrow-violet.svg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.card-item:hover p,
.card-item:focus p {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.price-box {
    position: relative;
    background-color: rgba(253, 216, 53, 0.1);
    border: 2px solid transparent;
    padding: 15px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .price-box {
        padding: 20px 30px;
    }
}
@media screen and (min-width: 992px) {
    .price-box {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
    }
}
@media screen and (min-width: 1200px) {
    .price-box {
        padding: 30px 40px;
    }
}
@media screen and (min-width: 1470px) {
    .price-box {
        padding: 40px 60px;
    }
}
@media screen and (min-width: 1600px) {
    .price-box {
        padding: 60px 80px;
    }
}
.price-box-l {
    position: relative;
    margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
    .price-box-l {
        width: 60%;
        margin-bottom: 0;
        padding-right: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .price-box-l {
        padding-right: 60px;
    }
}
@media screen and (min-width: 1470px) {
    .price-box-l {
        padding-right: 80px;
    }
}
@media screen and (min-width: 1600px) {
    .price-box-l {
        padding-right: 120px;
    }
}
.price-box-r {
    position: relative;
}
@media screen and (min-width: 992px) {
    .price-box-r {
        width: 40%;
    }
}
.price-box-r img {
    width: 60%;
    height: auto;
    display: block;
    margin: auto;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 992px) {
    .price-box-r img {
        width: 100%;
    }
}
.price-box-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
}
@media screen and (min-width: 767px) {
    .price-box-title {
        font-size: 32px;
        line-height: 32px;
    }
}
@media screen and (min-width: 1200px) {
    .price-box-title {
        font-size: 48px;
        line-height: 48px;
    }
}
.price-box-title span {
    font-weight: 700;
    color: #6c63ff;
}
.price-box:hover,
.price-box:focus {
    border-color: rgba(253, 216, 53, 0.4);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.price-box:hover .price-box-r img,
.price-box:focus .price-box-r img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.payment-box {
    position: relative;
}
@media screen and (min-width: 992px) {
    .payment-box {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: start;
        flex-direction: row-reverse;
    }
}
.payment-box-l {
    position: relative;
    display: block;
}
@media screen and (min-width: 992px) {
    .payment-box-l {
        width: 60%;
    }
}
.payment-box-l-form {
    position: relative;
    padding: 15px;
    background-color: #fff;
    border: 2px solid #6c63ff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .payment-box-l-form {
        padding: 20px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
    }
}
@media screen and (min-width: 992px) {
    .payment-box-l-form {
        padding: 30px;
    }
}
.payment-box-l-price {
    margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
    .payment-box-l-price {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 767px) {
    .payment-box-l-price {
        margin-bottom: 30px;
    }
}
.payment-box-l-price h1,
.payment-box-l-price h2,
.payment-box-l-price h3,
.payment-box-l-price h4,
.payment-box-l-price h5 {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 0;
    justify-content: center;
}
@media screen and (min-width: 600px) {
    .payment-box-l-price h1,
    .payment-box-l-price h2,
    .payment-box-l-price h3,
    .payment-box-l-price h4,
    .payment-box-l-price h5 {
        justify-content: start;
    }
}
@media screen and (min-width: 767px) {
    .payment-box-l-price h1,
    .payment-box-l-price h2,
    .payment-box-l-price h3,
    .payment-box-l-price h4,
    .payment-box-l-price h5 {
        column-gap: 15px;
    }
}
.payment-box-l-price h1 span:nth-child(1),
.payment-box-l-price h2 span:nth-child(1),
.payment-box-l-price h3 span:nth-child(1),
.payment-box-l-price h4 span:nth-child(1),
.payment-box-l-price h5 span:nth-child(1) {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
}
@media screen and (min-width: 767px) {
    .payment-box-l-price h1 span:nth-child(1),
    .payment-box-l-price h2 span:nth-child(1),
    .payment-box-l-price h3 span:nth-child(1),
    .payment-box-l-price h4 span:nth-child(1),
    .payment-box-l-price h5 span:nth-child(1) {
        font-size: 18px;
        line-height: 40px;
    }
}
.payment-box-l-price h1 span:nth-child(2),
.payment-box-l-price h2 span:nth-child(2),
.payment-box-l-price h3 span:nth-child(2),
.payment-box-l-price h4 span:nth-child(2),
.payment-box-l-price h5 span:nth-child(2) {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: #6c63ff;
}
@media screen and (min-width: 767px) {
    .payment-box-l-price h1 span:nth-child(2),
    .payment-box-l-price h2 span:nth-child(2),
    .payment-box-l-price h3 span:nth-child(2),
    .payment-box-l-price h4 span:nth-child(2),
    .payment-box-l-price h5 span:nth-child(2) {
        font-size: 40px;
        line-height: 40px;
    }
}
.payment-box-l-price ul {
    justify-content: center;
}
@media screen and (min-width: 600px) {
    .payment-box-l-price ul {
        justify-content: start;
    }
}
.payment-box-l-secure {
    position: relative;
    margin-top: 5px;
    text-align: center;
}
@media screen and (min-width: 420px) {
    .payment-box-l-secure {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
    }
}
@media screen and (min-width: 600px) {
    .payment-box-l-secure {
        margin-top: 15px;
    }
}
@media screen and (min-width: 992px) {
    .payment-box-l-secure {
        column-gap: 15px;
    }
}
.payment-box-l-secure p {
    padding-left: 20px;
    margin-bottom: 0;
    color: #1e1e2f;
    display: inline-block;
}
@media screen and (min-width: 767px) {
    .payment-box-l-secure p {
        padding-left: 24px;
    }
}
.payment-box-l-secure p:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-secure-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    display: block;
}
@media screen and (min-width: 767px) {
    .payment-box-l-secure p:after {
        background-size: 20px 20px;
        width: 20px;
        height: 20px;
    }
}
.payment-box-l-secure ul {
    justify-content: center;
}
@media screen and (min-width: 420px) {
    .payment-box-l-secure ul {
        justify-content: start;
    }
}
.payment-box-r {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
    .payment-box-r {
        width: 40%;
        padding-left: 40px;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1470px) {
    .payment-box-r {
        padding-left: 60px;
    }
}
@media screen and (min-width: 1600px) {
    .payment-box-r {
        padding-left: 80px;
    }
}
@media screen and (min-width: 1800px) {
    .payment-box-r {
        padding-left: 120px;
    }
}
.payment-box-r-document {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(108, 99, 255, 0.1);
    padding: 25px 15px 15px 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
@media screen and (min-width: 992px) {
    .payment-box-r-document {
        padding: 20px;
    }
}
@media screen and (min-width: 767px) {
    .payment-box-r-document {
        padding: 30px 20px 20px 20px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
    }
}
.payment-box-r-document-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    display: block;
    margin: auto;
    background-color: #6c63ff;
    left: 0;
    right: 0;
    top: -16px;
    z-index: 1;
    background-image: url(../../assets/images/icons/icn-check-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@media screen and (min-width: 767px) {
    .payment-box-r-document-icon {
        width: 48px;
        height: 48px;
        background-size: 20px 20px;
        top: -24px;
    }
}
.payment-box-r-document-image {
    position: relative;
    width: 60%;
    margin: auto auto 15px auto;
    overflow: hidden;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .payment-box-r-document-image {
        width: 80%;
    }
}
.payment-box-r-document-image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.payment-box-r-document-image-zoom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    height: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    font-weight: 500;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(
        to top,
        rgb(30, 30, 47) 0%,
        rgba(30, 30, 47, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .payment-box-r-document-image-zoom {
        font-size: 16px;
    }
}
.payment-box-r-document-image-zoom span {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
}
@media screen and (min-width: 767px) {
    .payment-box-r-document-image-zoom span {
        padding: 20px 30px;
    }
}
.payment-box-r-document-image-zoom span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../../assets/images/icons/icn-zoom.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .payment-box-r-document-image-zoom span:after {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }
}
.payment-box-r-document-type {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
}
@media screen and (min-width: 600px) {
    .payment-box-r-document-type {
        font-size: 14px;
        line-height: 22px;
    }
}
.payment-box-r-document-type img {
    width: 18px;
    opacity: 0.7;
}
@media screen and (min-width: 600px) {
    .payment-box-r-document-type img {
        width: 22px;
    }
}
.payment-box-r-document:hover,
.payment-box-r-document:focus {
    border-color: rgba(108, 99, 255, 0.2);
    background-color: rgba(108, 99, 255, 0.02);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.payment-box-r-document:hover .payment-box-r-document-image,
.payment-box-r-document:focus .payment-box-r-document-image {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.payment-box-r-document:hover .payment-box-r-document-image img,
.payment-box-r-document:focus .payment-box-r-document-image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.payment-box-r-document:hover .payment-box-r-document-type,
.payment-box-r-document:focus .payment-box-r-document-type {
    color: #1e1e2f;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.payment-box-r-document:hover .payment-box-r-document-type:after,
.payment-box-r-document:focus .payment-box-r-document-type:after {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 47, 0.7);
    z-index: 1000;
    display: none;
}
.modal-container {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.modal-container-body {
    position: relative;
    padding: 20px;
    background-color: #fff;
    margin: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
@media screen and (min-width: 767px) {
    .modal-container-body {
        padding: 30px;
    }
}
@media screen and (min-width: 992px) {
    .modal-container-body {
        width: 880px;
        padding: 30px 40px;
    }
}
@media screen and (min-width: 1600px) {
    .modal-container-body {
        padding: 40px 50px;
    }
}
.modal-container-body-loading {
    position: relative;
}
@media screen and (min-width: 767px) {
    .modal-container-body-loading {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
    }
}
.modal-container-body-loading-l {
    position: relative;
    margin-bottom: 25px;
}
@media screen and (min-width: 767px) {
    .modal-container-body-loading-l {
        padding-right: 20px;
        width: 50%;
        margin-bottom: 0px;
    }
}
@media screen and (min-width: 1200px) {
    .modal-container-body-loading-l {
        padding-right: 60px;
    }
}
@media screen and (min-width: 1600px) {
    .modal-container-body-loading-l {
        padding-right: 80px;
    }
}
.modal-container-body-loading-r {
    position: relative;
}
@media screen and (min-width: 767px) {
    .modal-container-body-loading-r {
        width: 50%;
    }
}
.modal-container-body-loading-scanning {
    position: relative;
}
.modal-container-body-loading-scanning img {
    width: 60%;
    height: auto;
    display: block;
    margin: auto;
}
@media screen and (min-width: 767px) {
    .modal-container-body-loading-scanning img {
        width: 70%;
    }
}
.modal-container-body-loading-scanning span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    display: block;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgb(108, 99, 255) 0%,
        rgba(108, 99, 255, 0) 100%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-animation: scanning-anim 3s infinite;
    -moz-animation: scanning-anim 3s infinite;
    -o-animation: scanning-anim 3s infinite;
    animation: scanning-anim 3s infinite;
}
@-webkit-keyframes scanning-anim {
    0% {
        bottom: 0;
    }
    50% {
        bottom: calc(100% - 60px);
    }
    100% {
        bottom: 0;
    }
}
@-moz-keyframes scanning-anim {
    0% {
        bottom: 0;
    }
    50% {
        bottom: calc(100% - 60px);
    }
    100% {
        bottom: 0;
    }
}
@-o-keyframes scanning-anim {
    0% {
        bottom: 0;
    }
    50% {
        bottom: calc(100% - 60px);
    }
    100% {
        bottom: 0;
    }
}
@keyframes scanning-anim {
    0% {
        bottom: 0;
    }
    50% {
        bottom: calc(100% - 60px);
    }
    100% {
        bottom: 0;
    }
}

.modal-document-steps {
    position: relative;
}
.modal-document-steps-1,
.modal-document-steps-2,
.modal-document-steps-3 {
    position: relative;
    display: none;
}
.modal-document-steps-1 {
    display: block;
}
.modal-document-image {
    text-align: center;
    position: relative;
    margin-bottom: 15px;
}
@media screen and (min-width: 767px) {
    .modal-document-image {
        margin-bottom: 20px;
    }
}
.modal-document-image img {
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}
.modal-document-format {
    position: relative;
    margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
    .modal-document-format {
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 992px) {
    .modal-document-format {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        align-items: center;
        width: 100%;
    }
}
.modal-document-format-your-file {
    position: relative;
    margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
    .modal-document-format-your-file {
        width: 66%;
        padding-right: 64px;
        margin-bottom: 0;
    }
}
.modal-document-format-your-file:after {
    content: "";
    position: absolute;
    bottom: -64px;
    right: 0;
    left: 0;
    margin: auto;
    width: 64px;
    height: 48px;
    display: block;
    background-image: url(../../assets/images/icons/icn-convert.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}
@media screen and (min-width: 992px) {
    .modal-document-format-your-file:after {
        left: initial;
        bottom: 0;
    }
}
.modal-document-format-your-file > p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    text-align: center;
    color: #1e1e2f;
    font-weight: 500;
}
@media screen and (min-width: 992px) {
    .modal-document-format-your-file > p {
        margin-bottom: 10px;
    }
}
.modal-document-format-your-file-box {
    position: relative;
}
.modal-document-format-your-file-box p {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: rgba(30, 30, 47, 0.7);
    margin-bottom: 0;
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 10px 12px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
@media screen and (min-width: 767px) {
    .modal-document-format-your-file-box p {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 16px;
    }
}
.modal-document-format-your-file-box p img {
    width: 16px;
    height: auto;
    display: block;
    opacity: 0.7;
}
@media screen and (min-width: 767px) {
    .modal-document-format-your-file-box p img {
        width: 20px;
    }
}
.modal-document-format-convert-to {
    position: relative;
}
@media screen and (min-width: 992px) {
    .modal-document-format-convert-to {
        width: 34%;
    }
}
.modal-document-format-convert-to > p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    text-align: center;
    color: #1e1e2f;
    font-weight: 500;
}
@media screen and (min-width: 992px) {
    .modal-document-format-convert-to > p {
        margin-bottom: 10px;
    }
}
.modal-document-format-convert-to-box {
    position: relative;
}
.modal-document-format-convert-to-box > a {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(108, 99, 255, 0.2);
    box-sizing: border-box;
    padding: 10px 12px;
    display: block;
    width: 100%;
    display: block;
    color: #1e1e2f;
    font-size: 14px;
    line-height: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box > a {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 16px;
    }
}
.modal-document-format-convert-to-box > a:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    display: block;
    margin: auto;
    right: 12px;
    top: 0px;
    bottom: 0;
    z-index: 1;
    background-image: url(../../assets/images/icons/icn-arrow-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box > a:after {
        right: 16px;
    }
}
.modal-document-format-convert-to-box > a:hover,
.modal-document-format-convert-to-box > a:focus {
    background-color: rgba(108, 99, 255, 0.04);
    border-color: rgba(108, 99, 255, 0.3);
    color: #6c63ff;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.modal-document-format-convert-to-box.convert-to-box-open > a:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.modal-document-format-convert-to-box ul {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: 44px;
    background-color: #fff;
    border: 1px solid rgba(108, 99, 255, 0.2);
    z-index: 2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box ul {
        top: 48px;
    }
}
.modal-document-format-convert-to-box ul > li {
    position: relative;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.modal-document-format-convert-to-box ul > li > a {
    position: relative;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    opacity: 0.7;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
    .modal-document-format-convert-to-box ul > li > a {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box ul > li > a {
        gap: 10px;
        padding: 12px 16px;
    }
}
.modal-document-format-convert-to-box ul > li > a:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    display: block;
    margin: auto;
    right: 8px;
    top: 0px;
    bottom: 0;
    z-index: 2;
    background-image: url(../../assets/images/icons/icn-check-violet.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    opacity: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box ul > li > a:after {
        right: 16px;
    }
}
.modal-document-format-convert-to-box ul > li > a img {
    width: 20px;
    height: auto;
    display: block;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
    .modal-document-format-convert-to-box ul > li > a img {
        width: 24px;
    }
}
.modal-document-format-convert-to-box ul > li > a:hover,
.modal-document-format-convert-to-box ul > li > a:focus {
    opacity: 1;
    background-color: rgba(108, 99, 255, 0.05);
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}
.modal-document-format-convert-to-box ul > li > a:hover:after,
.modal-document-format-convert-to-box ul > li > a:focus:after {
    opacity: 1;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
}

.progress-bar {
    position: relative;
    height: 40px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: end;
    z-index: 1;
}
@media screen and (min-width: 992px) {
    .progress-bar {
        height: 50px;
    }
}
.progress-bar-line {
    position: relative;
    width: 100%;
    height: 10px;
    display: block;
    background-color: rgba(108, 99, 255, 0.1);
}
@media screen and (min-width: 992px) {
    .progress-bar-line {
        height: 14px;
    }
}
.progress-bar-line span {
    position: absolute;
    background-color: #6c63ff;
    top: 0;
    bottom: 0;
    left: 0;
}
.progress-bar-line span:nth-child(1) {
    width: 0%;
}
.progress-bar-line span:nth-child(2) {
    margin: auto;
    width: 4px;
    height: 24px;
}
@media screen and (min-width: 992px) {
    .progress-bar-line span:nth-child(2) {
        height: 28px;
    }
}
.progress-bar-no {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #1e1e2f;
    white-space: nowrap;
    z-index: 2;
    transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
    .progress-bar-no {
        font-size: 16px;
        line-height: 16px;
    }
}
@media screen and (min-width: 992px) {
    .progress-bar-no {
        font-size: 18px;
        line-height: 18px;
    }
}

.styleguide-item {
    position: relative;
    padding: 15px 20px;
    background-color: rgba(30, 30, 47, 0.03);
}
.styleguide-item-cols {
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.styleguide-item-cols-item {
    position: relative;
}

/*# sourceMappingURL=style.css.map */
