* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: auto;
    width: 100%;
}
body {
    width: 100%;
    min-width: 100%;
    height: auto;
    color: #a5a7b0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8rem;
    background: #fff;
}
input[type=text],
input[type=password],
input[type=number],
textarea,
select {
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    height: 52px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0 0 1em 0;
}
select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
textarea {
    min-height: 150px;
    resize: none;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
    border-color: #999;
}
input.error,
textarea.error {
    border: 1px solid #E74C3C !important;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=number]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #fff5;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #fff5;
}
input[type=text]:-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #fff5;
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #fff5;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
    color: #fff5;
}
.checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 20px;
}
.checkbox + label {
    position: relative;
    padding: 0 0 0 60px;
    cursor: pointer;
}
.checkbox + label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 50px;
    height: 24px;
    border-radius: 13px;
    background: #e9f0fa;
    transition: .2s;
}
.checkbox + label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #347AF0;
    transition: .2s;
}
.checkbox:checked + label:before {
    background: #347AF0;
}
.checkbox:checked + label:after {
    left: 26px;
    background: #fff;
}
.radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.radio + label {
    position: relative;
    padding: 0 0 0 35px;
    cursor: pointer;
}
.radio + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 9px;
    background: #FFF2;
}
.form .radio + label:before {
    background: #ebe8fa;
}
.radio + label:after {
    content: '';
    position: absolute;
    top: 9px;
    left: 5px;
    width: 12px;
    height: 12px;
    background: url("../images/check.svg") center center no-repeat;
    background-size: 12px;
    opacity: 0;
    transition: .2s;
}
.radio:checked + label:after {
    opacity: 1;
}
input[type=submit],
.button > button {
    display: block;
    position: relative;
    width: 100%;
    outline: none;
    padding: 14px 28px;
    font-size: 12pt;
    background: #793E19;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(131,95,234,.5);
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
input[type=submit]:hover,
.button > button:hover {
    box-shadow: 0 10px 30px rgba(131,95,234,.7);
}
button.close2 {
    width: 60px;
    height: 60px;
    background: url("../images/cancel.svg") center center no-repeat;
    background-size: 60px;
    box-shadow: none;
    border: none;
}
button.close2:hover {
    box-shadow: none;
    background: url("../images/cancel.svg") center center no-repeat;
    background-size: 60px;
}
button:focus {
    outline: none;
}
.modal-body {
    padding: 2em;
}
.modal-dialog .modal-content {
    border: 0;
    border-radius: 30px;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.08), 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.08), 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}
.modal-footer {
    border: none;
}
span {
    display: block;
}

.pagination {
	justify-content: center;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #793E19 !important;
    border-color: #793E19 !important;
}

.wave {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #793E19;
}
ul {
    list-style: none;
    margin: 0;
}
h1 {
    font-size: 2.375em;
    color: #0d1b46;
    font-weight: 700;
}
.line {
    position: relative;
    padding: 0 0 0 1.4em;
}
.line:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 1em;
    height: 4px;
    margin: -3px 0 0 0;
    background: #793E19;
    border-radius: 2px;
}
h2 {
    font-size: 2em;
    color: #0d1b46;
    font-weight: 500;
}
h3 {
    font-size: 1.625em;
}
h4 {
    color: #46556c;
    font-weight: 600;
    font-size: 1.25em;
}
.sublime {
    font-size: 19px;
}
img {
    max-width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
}
a {
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    box-sizing: border-box;
    color: #793E19;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    color: #7354cd;
}
.wrapper {
    width: 100%;
    max-width: 1440px;
    position: relative;
    margin: 0 auto;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page_content {
    margin: 5em 0 0 0;
}
.nk-block {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.button {
    margin: 2em 0 0 0;
}
.button > a:nth-child(2) {
    margin: 0 0 0 1em;
}
.button-big {
    display: inline-block;
    min-width: 80px;
    padding: 18px 32px;
    font-size: 1.3em;
    background: #793E19;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(131,95,234,.5);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button-medium {
    display: inline-block;
    min-width: 80px;
    padding: 14px 28px;
    font-size: 12pt;
    background: #793E19;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(131,95,234,.5);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button-white {
    border: 1px solid #793E19;
    background: none;
    box-shadow: none;
    color: #793E19;
}
.button-big:hover,
.button-medium:hover {
    box-shadow: 0 10px 30px rgba(131,95,234,.7);
    color: #fff;
}
.button-white:hover {
    box-shadow: none;
    color: #793E19;
}
.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title > h1 {
    margin: 0;
}
.title > a.more {
    display: inline-block;
    min-width: 80px;
    padding: 6px 38px 6px 19px;
    font-size: 11pt;
    background: #4F48EC;
    color: #fff;
    border-radius: 9px;
    box-shadow: 0 10px 30px rgba(79,72,236,.5);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.title > a.more > span {
    position: relative;
}
.title > a.more > span:after {
    position: absolute;
    content: '';
    right: -25px;
    top: 50%;
    background: url("../images/right-arrow.html") center center no-repeat;
    background-size: 14px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.title > a.more:hover > span:after {
    right: -30px;
}
.bold {
    font-weight: 600;
}
.main_stat {
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-tabs .nav-item {
    margin-bottom: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: inherit;
    border-color: inherit;
}
.nav-tabs .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
    font-size: 1.4em;
    font-weight: 500;
}
.main_stat .nav-item:first-of-type .nav-link {
    background: url("../images/down-arrow.svg") top left no-repeat;
    background-size: 30px;
    padding: 45px 0 0 0;
}
.main_stat .nav-item:last-of-type .nav-link {
    background: url("../images/up-arrow.svg") top left no-repeat;
    background-size: 30px;
    padding: 45px 0 0 0;
}
.form {
    margin: 2em 0 0 0;
    width: 100%;
}
.form label,
.form2 label,
.form3 label,
.form2 .double > div > label {
    display: block;
    color: #141c27;
    font-weight: 500;
}
.form .col-6 {
    margin: 0 -15px;
}
.form2 label,
.form3 label,
.form2 .double > div > label {
    color: inherit;
}
.form label > small,
.form2 label > small,
.form3 label > small {
    display: block;
}
.faq .panel {
    background: #fff;
    box-shadow: 0 30px 60px rgba(20,28,39,.1);
    border-radius: 9px;
    margin: 2em 0;
}
.faq .panel .panel-heading {
    padding: 1em 0;
}
.faq .panel .panel-heading > h4 {
    margin: 0;
    padding: 0 0 0 70px;
    background: url("../images/question.html") 30px center no-repeat;
    background-size: 20px;
    font-size: inherit;
    position: relative;
}
.faq .panel .panel-heading > h4 > a {
    color: #000;
}
.faq .panel .panel-collapse .panel-body {
    padding: 0 20px 2em 70px;
}
.panel-heading [data-toggle="collapse"]:after {
    background: url("../images/arrow-down-sign-to-navigate.html") center center no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0 20px 0 0;
    content: '';
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.panel-heading [data-toggle="collapse"].collapsed:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.frm {
    background: url("../images/frm.jpg") top left no-repeat;
}
.forms_page {
    padding: 0 15px;
}
.forms_page .row {
    align-items: center;
}
.forms_page .row .col-8 {
    text-align: center;
}
.forms_page .row .col-8 .logo > a {
    display: block;
    background: url(../images/logo.png) center center no-repeat;
    background-size: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto 2em auto;
}
.forms_page .row .col-8 > h1 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 4em;
    color: #fff;
}
.forms_page .row .col-8 > h2 {
    color: #fff;
}
.forms_page .row .col-8 > h4 {
    color: #fff5;
    font-weight: 300;
    position: relative;
    padding: 0 50px;
    display: inline-block;
}
.forms_page .row .col-8 > h4:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 1px;
    width: 25px;
    background: #fff5;
}
.forms_page .row .col-8 > h4:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    height: 1px;
    width: 25px;
    background: #fff5;
}
.forms_page .row .col-4 {
    min-height: 100vh;
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
}
.forms_page .row .col-4:before {
    position: absolute;
    content: '';
    top: -8em;
    right: -4em;
    border-radius: 50%;
    width: 16em;
    height: 16em;
    background: #793E19;
}
.forms_page .row .col-4 .form_folder .same_form > h1 {
    color: #fff;
    position: relative;
}
.forms_page .row .col-4 .form_folder {
    padding: 2em 0;
}
.remember > label {
    line-height: 28px;
    margin: 0 !important;
}
.same_form {
    margin: 5em 0 0 0;
}
.same_form > h3 {
    color: #fff;
    margin: 1em 0 .5rem 0;
}
.same_form > span {
    margin: 1em 0 0 0;
}
.tab {
    display: none;
}
.step {
    height: 16px;
    width: 16px;
    margin: 5px 7px;
    background: #eae6ff;
    border: none;
    border-radius: 50%;
    display: inline-block;
}
.step.active {
    background: #793E19;
}
.step.finish {
    background-color: #4CAF50;
}
.form2,
.form3 {
    margin: 2em 0 0 0;
}
.form2 label,
.form label {
    margin: 0 0 .5rem 1em;
}
label > span {
    font-weight: 500;
    display: inline-block !important;
}
.form2 .double,
.form3 .double {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 -15px;
}
.form2 input[type=text],
.form2 input[type=password] {
    border: 1px solid #fff4;
    background: none;
    margin: 0 0 1em 0;
    color: #fff;
    border-radius: 9px;
}
.allerts {
    padding: 1em 1em 1em 60px;
    background: rgba(79,72,236,.1) url(../images/information.html) 20px center no-repeat;
    background-size: 20px;
    border-radius: 9px;
    line-height: 1.4;
    display: block;
    margin: 0 0 1em 0;
}
.allerts > p {
    margin: 0;
}
.allerts > h2 {
    font-size: 1.2em;
}
form small {
    color: #E74C3C;
    display: block;
    margin: 0 0 5px 15px;
}
form small > a {
    color: #E74C3C;
    border-bottom: 1px solid rgba(231,76,60,.3);
}
form small > a:hover {
    color: #E74C3C;
    border-bottom: 1px solid rgba(231,76,60,.5);
}
form .row {
    align-items: flex-end !important;
}
.menu .collapse:not(.show) {
    display: block !important;
}
.padding5 {
    padding: 5em 0;
}
.dropdown-menu {
    margin: 1em 0 0 0;
    padding: 1em;
    border-radius: 30px;
}
header {
    background: #1f1f1f url("../images/header.png") top center no-repeat;
    position: relative;
}
.top_header {
    padding: 1em 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
}
.top_header .wrapper {
    position: relative;
    z-index: 10;
}
.top_header .row {
    justify-content: space-between;
    align-items: center;
}
.logo > a > span {
    color: #fff;
    font-weight: 700;
    font-size: 1.6em;
}
.top_header .col-8 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top_header .nav {
    display: flex;
}
.top_header .nav > li {
    margin: 0 1em 0 0;
}
.top_header .nav > li:last-of-type {
    margin: 0;
}
.top_header .nav > li > a {
    color: #fff;
}
.top_header .nav .dropdown-menu > a {
    position: relative;
    padding: 5px 0 5px 20px;
}
.top_header .nav .dropdown-menu > a:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    margin: -2px 0 0 0;
    background: #793E19;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.lang {
    margin: 0 0 0 2em;
}
.lang .dropdown-menu > a {
    position: relative;
    padding: 5px 0 5px 10px;
    line-height: 20px;
}
.lang .dropdown-menu > a > img {
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}
.lang > span {
    cursor: pointer;
    display: block;
    height: 20px;
    line-height: 20px;
    background: url("../images/flags/united-kingdom.svg") left center no-repeat;
    background-size: 20px;
    font-size: .7em;
    padding: 0 0 0 25px;
}
.top_header .dashboard {
    margin: 0 0 0 2em;
}
.top_header .dashboard a {
    padding: 10px 24px;
    color: #fff;
}
.middle_header {
    padding: 5em 0 0 0;
}
.middle_header .row {
    align-items: flex-end;
}
.middle_header .row .col-6 {
    padding: 0 15px 5em 15px;
}
.middle_header .row .col-6 > h1 {
    color: #793E19;
}
.middle_header .row .col-6 > h2 {
    color: #fff;
}
.middle_header .row .col-4 .video {
    background: #fff2;
    padding: 2em;
    border-radius: 30px 30px 0 0;
}
.middle_header .row .col-4 .video .play {
    margin: 0 0 2em 0;
}
.middle_header .row .col-4 .video .play > a {
    display: block;
    color: #fff;
    font-weight: 600;
    background: url("../images/play-button.svg") left center no-repeat;
    background-size: 40px;
    padding: 0 0 0 55px;
    min-height: 40px;
    line-height: 40px;
}
.middle_header .row .col-4 .video > h2 {
    color: #fff;
    margin: .6em 0 .5rem 0;
}
.middle_header .row .col-4 .play_bg {
    width: 100%;
    height: 200px;
    border-radius: 9px;
    position: relative;
    background: #ccc;
    margin: 1em 0 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.middle_header .row .col-4 .play_bg > a {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    display: block;
    background: url("../images/play-button.svg") center center no-repeat;
    background-size: 40px;
    width: 40px;
    height: 40px;
}
.buy {
    background: url("../images/left_1.png") left center no-repeat;
}
.buy .wrapper .row {
    align-items: center;
}
.ps2 {
    display: flex;
    margin: 2em 0 0 0;
}
.ps2 > li {
    margin: 0 2em 0 0;
}
.ps2 > li:last-of-type {
    margin: 0;
}
.ps2 > li > img {
    max-height: 26px;
    filter: brightness(0) invert(.6);
}
.title_center {
    text-align: center;
    margin: 0 0 5em 0;
}
.title_center > h1 {
    position: relative;
}
.title_center > h1:after {
    position: absolute;
}
.start {
    background: url("../images/right_1.png") right center no-repeat;
}
.start .wrapper .row .col-3,
.start .wrapper .row .col-2 {
    text-align: center;
    padding: 4em 0em 14em 0em;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.start .wrapper .row .col-3 > h1,
.start .wrapper .row .col-2 > h1 {
    display: block;
    padding: 0 2em;
    color: #793E19;
}
.start .wrapper .row .col-3 > img,
.start .wrapper .row .col-2 > img {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0 0 0 -50%;
}
.start .wrapper .row .col-3 > span,
.start .wrapper .row .col-2 > span {
    font-size: .8em;
    padding: 0 2em;
}
.start .wrapper .row .col-3 > h4 {
    color: #fff;
    padding: 0 2em;
}
.start .wrapper .row .col-2 > h4 {
    padding: 0 2em;
}
.start .wrapper .row .col-3 {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    color: #fff8;
}
.start .wrapper .row .col-2 {
    background: #f5f3ff;
    border-radius: 30px;
    border-bottom: 2px solid #dcd5ff;
}
.plans {
    background: url("../images/right_2.png") right center no-repeat;
}
.plans .col-4:nth-child(2) .plan_content,
.plans .col-4:nth-child(3) .plan_content {
    background: #f5f3ff;
    border-radius: 30px;
    border-bottom: 2px solid #dcd5ff;
    overflow: hidden;
}
.plan_content {
    padding: 2em 0;
    margin: 2em 0 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.plan_content:before {
    position: absolute;
    content: '';
    top: -8em;
    right: -4em;
    border-radius: 50%;
    width: 16em;
    height: 16em;
    background: #793E19;
}
.plan_content > ul > li > small {
    display: block;
    margin: 0 0 0 26px;
}
.plans .col-3:nth-child(1) .plan_content:before {
    background: #eae6ff;
}
.plans .col-3:nth-child(2) .plan_content:before {
    background: #eae6ff;
}
.plans .col-3:nth-child(4) .plan_content,
.plans .col-3:nth-child(3) .plan_content {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
}
.plans .col-3:nth-child(4) .plan_content > ul > li > h1,
.plans .col-3:nth-child(3) .plan_content > ul > li > h1 {
    color: #fff;
}
.plans .col-3 .plan_content > ul {
    position: relative;
    z-index: 2;
}
.plans .col-3 .plan_content > ul > li > h1.hot {
    padding: 0 0 0 32px;
    background: url("../images/burn.svg") left center no-repeat;
    background-size: 22px;
}
.plans .col-3 .plan_content > ul > li > h1.hot2 {
    padding: 0 0 0 32px;
    background: url("../images/burn2.svg") left center no-repeat;
    background-size: 22px;
}
.plans .col-3 .plan_content > ul > li > h1.hot3 {
    padding: 0 0 0 32px;
    background: url("../images/burn3.svg") left center no-repeat;
    background-size: 22px;
}
.plans .col-3:nth-child(3) .plan_content > ul > li,
.plans .col-3:nth-child(4) .plan_content > ul > li {
    margin: 0 0 1em 0;
    padding: 0 2em 1em 2em;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.plans .col-3:nth-child(3) .plan_content > ul > li > span > b,
.plans .col-3:nth-child(4) .plan_content > ul > li > span > b {
    color: #fff;
}
.plans .col-3:nth-child(1) .plan_content > ul > li > span > b,
.plans .col-3:nth-child(2) .plan_content > ul > li > span > b {
    color: #0d1b46;
}
.plans .col-3:nth-child(3) .plan_content > ul > li:last-of-type,
.plans .col-3:nth-child(4) .plan_content > ul > li:last-of-type {
    padding: 0 2em 0 2em;
}
.plans .col-3:nth-child(3) .plan_content > ul > li:first-of-type,
.plans .col-3:nth-child(4) .plan_content > ul > li:first-of-type {
    padding: 0 2em 1em 2em;
}
.plans .col-3:nth-child(3) .plan_content > ul > li,
.plans .col-3:nth-child(4) .plan_content > ul > li {
    padding: 1em 2em 1em 2em;
}
.plans .col-3:nth-child(3) .plan_content > ul > li:nth-child(even),
.plans .col-3:nth-child(4) .plan_content > ul > li:nth-child(even) {
    background: #eae6ff;
    padding: 1em 2em 1em 2em;
}
.plans .col-3 .plan_content > ul > li:last-of-type {
    margin: 0;
    padding: 1em 2em 0 2em;
    border: none
}
.plans .col-3 .plan_content > ul > li > span.amount {
    color: #0d1b46;
    font-size: 1.2em;
    font-weight: 700;
    padding: 0 0 0 26px;
    background: url("../images/wallet.svg") left center no-repeat;
    background-size: 16px;
}
.plans .col-3 .plan_content > ul > li > span.period {
    padding: 0 0 0 26px;
    background: url("../images/clock.svg") left center no-repeat;
    background-size: 16px;
}
.plans .col-3:nth-child(3) .plan_content > ul > li > span.amount,
.plans .col-3:nth-child(4) .plan_content > ul > li > span.amount {
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
}
.plans .col-3 .plan_content > h2 {
    margin: 0 1em .5em 1em;
}
.plans .col-3:nth-child(3) .plan_content > h2,
.plans .col-3:nth-child(4) .plan_content > h2 {
    color: #fff;
    margin: 0 1em .5em 1em;
}
.invest {
    padding: 2em;
}
.statistics {
    background: #1f1f1f;
    border-bottom: 1px solid rgba(255,255,255,.03);
}
.statistics .wrapper .row {
    align-items: center;
}
.statistics .wrapper .row .col-3:nth-child(2) {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #292929 100%);
    border-radius: 30px;
    padding: 2em;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.statistics .wrapper .row .col-3 > ul > li > h1 {
    color: #fff;
}
.statistics .wrapper .row .col-3 > ul > li {
    margin: 0 0 1em 0;
}
.statistics .wrapper .row .col-3 > ul > li:last-of-type {
    margin: 0;
}
.statistics .wrapper .row .col-3 > ul > li > span {
    padding: 0 0 0 3.4em;
}
.statistics .wrapper .row .col-3:nth-child(3) > h1 {
    color: #fff;
}
.stat_list {
    margin: 2em 0 0 0;
}
.stat_list > li {
    display: flex;
    justify-content: space-between;
    padding: 1em .5em;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .9em;
}
.stat_list > li:last-of-type {
    border-bottom: none;
}
.stat_list > li > span {
    font-weight: 500;
    width: calc(100% / 2);
    position: relative;
    padding: 0 0 0 1.5em;
}
.stat_list > li > span:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    margin: -2px 0 0 0;
    background: #793E19;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.stat_list > li .ps {
    width: calc(100% / 3);
    display: flex;
}
.stat_list > li .ps .ic {
    color: #fff;
    border-radius: 3px;
    min-width: 40px;
    text-align: center;
    font-size: .7em;
}
.stat_list > li .ps .ic_ps1 {
    background: #E74C3C;
}
.stat_list > li .ps .ic_ps2 {
    background: #E67E22;
}
.stat_list > li .ps .ic_ps3 {
    background: #E67E22;
}
.stat_list > li .ps .ic_ps4 {
    background: #95A5A6;
}
.stat_list > li .ps .ic_ps5 {
    background: #F39C12;
}
span.ps1 {
    color: #E74C3C;
}
span.ps2 {
    color: #E67E22;
}
span.ps3 {
    color: #3498DB;
}
span.ps4 {
    color: #95A5A6;
}
span.ps5 {
    color: #F39C12;
}
.stat_list > li .ps > span {
    font-weight: 500;
    margin: 0 0 0 .7em;
}
.stat_list > li .amount {
    width: calc(100% / 3);
}
.stat_list > li .amount > span {
    text-align: right;
    font-weight: 600;
}
.partners {
    margin: -8em 0 0 0;
}
.partners2 {
    margin: 0;
}
.partners .wrapper .row {
    align-items: flex-end;
}
.refs_lines {
    margin: 2em 0 0 0;
    display: flex;
    justify-content: space-between;
}
.refs_lines .col-5 > h3 {
    color: #fff;
    position: relative;
    z-index: 2;
}
.refs_lines .col-6 > h3 {
    color: #0d1b46;
    position: relative;
    z-index: 2;
}
.refs_lines .col-5 > small,
.refs_lines .col-6 > small {
    position: relative;
    z-index: 2;
}
.refs_lines .col-5 > img,
.refs_lines .col-6 > img {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    z-index: 1;
}
.refs_lines .col-6 .percents,
.refs_lines .col-5 .percents {
    position: relative;
    z-index: 2;
    margin: 2em 0 0 0;
}
.refs_lines .col-6 .percents > span,
.refs_lines .col-5 .percents > span {
    display: block;
    font-size: 3em;
    font-weight: 700;
    margin: 0 0 .8em 0;
    position: relative;
    z-index: 2;
}
.refs_lines .col-6 .percents > span > small,
.refs_lines .col-5 .percents > span > small {
    display: block;
    color: #fff8;
    font-size: .4em;
    margin: .5em 0 0 0;
}
.refs_lines .col-6 .percents > span > small {
    color: #0008;
}
.refs_lines .col-6 .percents > span:last-of-type {
    margin: 0;
}
.refs_lines .col-5:nth-child(1) {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    padding: 2em 2em 4em 2em;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    overflow: hidden;
}
.refs_lines .col-6:nth-child(2) {
    background: #f5f3ff;
    padding: 2em 2em 4em 2em;
    border-radius: 30px;
    border-bottom: 2px solid #dcd5ff;
    overflow: hidden;
}
.refs_lines .col-5:nth-child(1) .percents > span {
    color: #793E19;
}
.refs_lines .col-6:nth-child(2) .percents > span {
    color: #0d1b46;
}
.be_rep {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    color: #fff8;
    border-radius: 30px;
    margin: 2em 0 0 0;
    padding: 2em;
}
.be_rep > h3 {
    color: #fff;
    margin: 1em 0 .5rem 0;
}
.be_rep > span.tx {
    margin: 1em 0 0 0;
}
.advantages {
    position: relative;
}
.advantages:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 67%;
    background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
}
.advantages .wrapper .row .col-3 {
    text-align: center;
    position: relative;
}
.advantages .wrapper .row .col-3:nth-child(2) {
    margin: 2em 0 0 0;
}
.advantages .wrapper .row .col-3 > h4 {
    position: relative;
    padding: 3em 0 1.5em 0;
}
.advantages .wrapper .row .col-3 > h4:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0em;
    margin: 0 0 0 -2.5em;
    width: 5em;
    height: 4px;
    background: #793E19;
    border-radius: 2px;
}
.advantages .wrapper .row .col-3:nth-child(1) > h4 {
    background: url("../images/security.svg") center top no-repeat;
    background-size: 40px;
}
.advantages .wrapper .row .col-3:nth-child(2) > h4 {
    background: url("../images/money.svg") center top no-repeat;
    background-size: 40px;
}
.advantages .wrapper .row .col-3:nth-child(3) > h4 {
    background: url("../images/chart.svg") center top no-repeat;
    background-size: 40px;
}
.place .wrapper .row {
    align-items: center;
}
.place .wrapper .row .col-7 {
    background: #1f1f1f url("../images/uk.png") bottom right no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    padding: 2em;
    border-radius: 30px;
    position: relative;
}
.place .wrapper .row .col-7 > h1 {
    color: #fff;
}
.map {
    margin: 1em 0 0 0;
}
.map > span {
    background: url("../images/placeholder.svg") left center no-repeat;
    background-size: 20px;
    padding: 0 0 0 2em;
}
.map > h4 {
    color: #fff;
}
small.info {
    display: inline-block;
    background: rgba(255,255,255,.05) url("../images/info.svg") 2em center no-repeat;
    background-size: 20px;
    padding: 1em 2em 1em 5em;
    border-radius: 30px;
}
small.info_cab {
    background: rgba(0,0,0,.05) url("../images/info.svg") 2em center no-repeat;
    background-size: 20px;
}
.place .wrapper .row .col-7 > span {
    margin: 1em 0;
    color: #fff;
}
.gifts {
    background: url("../images/left_2.png") left center no-repeat;
}
.gifts .wrapper .row {
    align-items: center;
}
.gifts .wrapper .row .col-4 > small {
    display: block;
    margin: 2em 0 0 0;
}
.gifts_block .gift {
    margin: 0 15px;
    position: relative;
}
.gifts_block .gift .gift_body {
    background: #f5f3ff;
    border-radius: 30px;
    padding: 2em;
    position: relative;
    border-bottom: 2px solid #dcd5ff;
}
.gifts_block .gift .gift_body:before {
    position: absolute;
    content: '';
    top: 1em;
    right: 1em;
    height: 60px;
    width: 60px;
    border-radius: 30px;
}
.gifts_block .gift .gift1:before {
    background: #1f1f1f url("../images/watch.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift2:before {
    background: #1f1f1f url("../images/tablet.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift3:before {
    background: #1f1f1f url("../images/iphone.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift4:before {
    background: #1f1f1f url("../images/computer.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift5:before {
    background: #1f1f1f url("../images/star.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift6:before {
    background: #1f1f1f url("../images/watch.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift7:before {
    background: #1f1f1f url("../images/car.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift8:before {
    background: #1f1f1f url("../images/car.svg") center center no-repeat;
    background-size: 24px;
}
.gifts_block .gift .gift_body > img {
    margin: 0 0 2em 0;
}
.gifts_block .gift .gift_body > span {
    display: inline-block;
    position: relative;
    padding: 0 25px;
}
.gifts_block .gift .gift_body > span:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 1px;
    width: 15px;
    background: #ccc;
}
.gifts_block .gift .gift_body > span:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    height: 1px;
    width: 15px;
    background: #ccc;
}
.gifts_block .gift .gift_body > h1 {
    font-size: 2em;
}
.gifts_block .gift .gift_body .turnover {
    margin: 1em 0 0 0;
    padding: 1em 0 0 0;
    position: relative;
}
.gifts_block .gift .gift_body .turnover:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 5em;
    height: 4px;
    background: #793E19;
    border-radius: 2px;
}
.gifts_block .gift .gift_body .turnover > h4 {
    margin: 0;
}
.owl-dots {
    margin: 2em 0 0 0;
    display: flex;
    justify-content: center;
}
.owl-dots .owl-dot.active > span {
    background: #793E19;
}
.owl-dots .owl-dot > span {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: #eae6ff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
span.back {
    display: inline-block;
    font-size: .8em;
    background: #793E19;
    color: #fff;
    border-radius: 20px;
    padding: 2px 15px;
}
.logo > a {
    display: inline-block;
    background: url("../images/logo.png") left center no-repeat;
    background-size: 24px;
    padding: 0 0 0 34px;
}
footer {
    background: #1f1f1f url("../images/footer.png") bottom center no-repeat;
    padding: 5em 0 5em 0;
}
footer .col-2 > span {
    margin: 1em 0 0 0;
    font-size: .7em;
    line-height: 1.2;
}
footer h4 {
    color: #fff;
}
.footer_video {
    background: #793E19;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(131,95,234,.3);
}
.payments {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.payments > li > img {
    max-width: 100px;
    filter: brightness(0) invert(1);
    opacity: .3;
}
.footer_logo > a > span {
    color: #fff;
    font-weight: 700;
    font-size: 1.6em;
}
.footer_nav > ul > li {
    position: relative;
    padding: 0 0 0 1.2em;
}
.footer_nav > ul > li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    margin: -2px 0 0 0;
    background: #fff5;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer_nav > ul > li:hover:before {
    background: #fff9;
    width: 14px;
}
.social_links {
    margin: 1em 0 0 0;
    padding: 1em 0 0 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.social_links > ul {
    display: flex;
}
.social_links > ul > li {
    margin: 0 1em 0 0;
}
.social_links > ul > li:last-of-type {
    margin: 0;
}
.social_links > ul > li > a {
    display: block;
    width: 30px;
    height: 30px;
}
.social_links > ul > li > a.fb {
    background: url("../images/facebook.svg") center center no-repeat;
    background-size: 30px;
}
.social_links > ul > li > a.tw {
    background: url("../images/twitter.svg") center center no-repeat;
    background-size: 30px;
}
.social_links > ul > li > a.inst {
    background: url("../images/instagram.svg") center center no-repeat;
    background-size: 30px;
}
.copyright {
    display: block;
    margin: 1em 0 0 0;
}
.footer_contacts > span.phone {
    background: url("../images/phone-call.svg") left center no-repeat;
    background-size: 14px;
    padding: 0 0 0 24px;
}
.footer_contacts > span.place {
    background: url(../images/placeholder.svg) left center no-repeat;
    background-size: 14px;
    padding: 0 0 0 24px;
}
.footer_contacts > span.phone > span {
    display: inline-block;
    font-size: 1.4em;
    font-weight: 600;
}
.footer_contacts .time > small {
    display: block;
}
.support .col-4 .be_rep {
    margin: 0 0 2em 0;
}
.support .col-4 .contacts {
    background: #f5f3ff;
    padding: 2em;
    border-radius: 30px;
    border-bottom: 2px solid #dcd5ff;
    overflow: hidden;
}
.support .col-4 .contacts > h3 {
    color: #0d1b46;
    position: relative;
    z-index: 2;
}
.support .col-4 .contacts > small {
    position: relative;
    z-index: 2;
}
.support .col-4 .contacts > span{
    color: #444;
}
.support .col-4 .contacts .social_links {
    border-top: 1px solid rgba(0,0,0,.05);
}
.faq .col-6 .accordion > h2 {
    margin: 0 0 1em 1em;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 0;
}
.card-header {
    padding: 1em;
    background: #f5f3ff;
    border-radius: 30px !important;
    border-bottom: none;
    margin: 0 0 2em 0 !important;
}
.card-header > a {
    color: #444;
    font-weight: 600;
    display: block;
    position: relative;
    padding: 0 0 0 22px;
}
.card-header > a:hover {
    color: #793E19;
}
.card-header > a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    margin: -1px 0 0 0;
    background: #444;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.card-header > a:hover:before {
    width: 14px;
    background: #793E19;
}
.card-body > p {
    font-size: .9em;
}
.start_invest .wrapper .row {
    align-items: center;
}
.plan_ab {
    align-items: flex-end;
}
.plan_about {
    margin: 2em 0 0 0;
    border-radius: 30px;
    padding: 1em;
    background: #f5f3ff;
}
.plan_about > h2 {
    display: none;
}
.plan_about > b {
    font-weight: 600;
    color: #0d1b46;
}
#calculator .modal-body {
    padding: 2em 2em 0 2em;
}
#calculator .modal-body .calc > img {
    max-width: 40%;
    margin: 0 0 1em 0;
}
.slider-bg {
    padding: 2em 0 0 0;
}
.min-max {
    display: flex;
    justify-content: space-between;
}
.min-max > small {
    height: 20px;
    line-height: 20px;
    color: #fff;
    background: #793E19;
    padding: 0 10px;
    border-radius: 10px;
}
.ui-widget.ui-widget-content {
    border: none !important;
    background: #ccc;
    height: 5px;
}
.ui-widget-header {
    border: 1px solid #dddddd;
    background: #793E19 !important;
    color: #333333;
    font-weight: bold;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -30px !important;
    margin-left: -.6em;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none !important;
    background: url(../images/black-placeholder-variant.svg) left center no-repeat !important;
    background-size: 26px !important;
    width: 26px !important;
    height: 26px !important;
    cursor: pointer !important;
    outline: none !important;
}
.ui-slider-horizontal .ui-slider-handle {
    margin-left: -.8em !important;
}
.calc {
    text-align: center;
}
.calc-block input {
    margin: 0;
}
.profit-calc {
    margin: 2em 0 0 0;
}
.page_start .col-6:nth-child(3),
.page_start .col-6:nth-child(4) {
    margin: 2em 0 0 0;
}
.start_block {
    background: #f5f3ff;
    padding: 2em;
    border-radius: 30px;
    border-bottom: 2px solid #dcd5ff;
    position: relative;
    overflow: hidden;
}
.start_block_black {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    padding: 2em;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.start_block_black:before {
    position: absolute;
    content: '';
    top: -8em;
    right: -4em;
    border-radius: 50%;
    width: 16em;
    height: 16em;
    background: #793E19;
}
.start_block:before {
    position: absolute;
    content: '';
    top: -8em;
    right: -4em;
    border-radius: 50%;
    width: 16em;
    height: 16em;
    background: #eae6ff;
    z-index: 1;
}
.start_block > h3 {
    margin: .5em 0 .5rem 0;
    color: #0d1b46;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.start_block_black > h3 {
    margin: .5em 0 .5rem 0;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2;
}
.start_block > span,
.start_block_black > span {
    position: relative;
    z-index: 2;
}
.start_block > span.start_text,
.start_block_black > span.start_text {
    width: 80%;
}
.start_ref {
    padding: 5em 0 0 0;
}
.start_ref .wrapper .row {
    align-items: center;
}
.about .wrapper .row {
    align-items: center;
}
.why {
    margin: -5em 0 0 0;
    background: url(../images/right_1.png) right center no-repeat;
}
.why .row {
    align-items: center;
}
.why .col-7 > ul {
    margin: 2em 0 0 0;
}
.why .col-7 > ul > li {
    margin: 0 0 1em 0;
    padding: 0 0 0 55px;
}
.why .col-7 > ul > li:last-of-type {
    margin: 0;
}
.why .col-7 > ul > li:nth-child(1) {
    background: url(../images/security.svg) left center no-repeat;
    background-size: 40px;
}
.why .col-7 > ul > li:nth-child(2) {
    background: url(../images/money.svg) left center no-repeat;
    background-size: 40px;
}
.why .col-7 > ul > li:nth-child(3) {
    background: url(../images/chart.svg) left center no-repeat;
    background-size: 40px;
}
.stat {
    background-image: linear-gradient(25deg, #1f1f1f 40%, #292929 100%);
    border-radius: 30px;
    padding: 2em;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    margin: 0 0 2em 0;
}
.stat > ul > li {
    margin: 0 0 1em 0;
}
.stat > ul > li:last-of-type {
    margin: 0;
}
.stat > ul > li > h1 {
    color: #fff;
}
.stat > ul > li > span {
    padding: 0 0 0 3.4em;
}
.navbar-toggler {
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.animated-icon1, .animated-icon2, .animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.animated-icon1 span {
    background: #e65100;
}
.animated-icon2 span {
    background: #fff;
}
.animated-icon3 span {
    background: #f3e5f5;
}
.animated-icon1 span:nth-child(1) {
    top: 0px;
}
.animated-icon1 span:nth-child(2) {
    top: 10px;
}
.animated-icon1 span:nth-child(3) {
    top: 20px;
}
.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.animated-icon2 span:nth-child(1) {
    top: 0px;
}
.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
}
.animated-icon2 span:nth-child(4) {
    top: 20px;
}
.animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}
.animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}
.animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
}
.animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
}
@keyframes jump {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.navbar-header,
.nav_mob {
    display: none;
}
.nav_mob {
    position: absolute;
    top: -2em;
    left: 0;
    content: '';
    z-index: 10;
    background-image: linear-gradient(25deg, #1f1f1f 40%, #333333 100%);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    padding: 2em;
    width: 100%;
    overflow: hidden;
}
.nav_mob:before {
    position: absolute;
    content: '';
    top: -8em;
    right: -4em;
    border-radius: 50%;
    width: 16em;
    height: 16em;
    background: #793E19;
}
.nav_mob > ul > li {
    margin: 0 0 1em 0;
}
.nav_mob > ul > li > a:hover > img {
    filter: brightness(55%) contrast(58%);
    -webkit-filter: brightness(55%) contrast(58%);
    -moz-filter: brightness(55%) contrast(58%);
}
.nav_mob > ul > li > a > img {
    height: 18px;
    width: 18px;
    margin: -2px 20px 0 0;
}
.nav_mob > ul > li:last-of-type {
    margin: 0;
}
.nav_mob > ul > li > a {
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 9px;
    color: #73787c;
}
.nav_mob > ul > li > a.active {
    background: #f5f3ff;
}
@keyframes jump2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.shape {
    background: radial-gradient(83.88% 314.71% at 37.64% -223.53%, #4463f0 0%, #2829dd 55.51%, #6665DD 95.47%, #8b8aff 120%);
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    height: 500px;
    transition: all 1s ease-in-out;
    width: 500px;
    z-index: 5;
    margin: 0 auto;
    position: absolute;
    top: -200px;
    right: -50px;
}
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        background: radial-gradient(83.88% 314.71% at 37.64% -223.53%, #4463f0 0%, #2829dd 55.51%, #6665DD 95.47%, #8b8aff 120%);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        background: radial-gradient(83.88% 314.71% at 37.64% -223.53%, #4463f0 0%, #2829dd 55.51%, #6665DD 95.47%, #8b8aff 120%);
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        background: radial-gradient(83.88% 314.71% at 37.64% -223.53%, #4463f0 0%, #2829dd 55.51%, #6665DD 95.47%, #8b8aff 120%);
    }
}
@media (max-width: 1300px) {

}
@media (max-width: 768px) {
    .navbar-header {
        display: block;
        position: relative;
        z-index: 12;
    }
    .top_header .row {
        display: flex;
        justify-content: space-between;
    }
    .top_header .row .col-3 {
        width: 30%;
        max-width: 30%;
    }
    .top_header .row .col-8 {
        width: 70%;
        max-width: 70%;

    }
.lang {order:1; margin: 0 2em 0 0;}
.navbar-header {order:2;}
    .page_content {
        margin: 2em 0 0 0;
    }
    .start_ref {
        padding: 2em 0 0 0;
    }
    .start_ref .wrapper .row .col-6 {
        text-align: center;
    }
    .start_ref .wrapper .row .col-5 {
        margin: 2em 0 0 0;
    }
    .page_start .col-6:nth-child(2),
    .page_start .col-6:nth-child(3),
    .page_start .col-6:nth-child(4) {
        margin: 2em 0 0 0;
    }
    .start_invest {
        text-align: center;
    }
    .calc-block .col-6:nth-child(2) {
        margin: 1em 0 0 0;
    }
    .slider-bg {
        padding: 3em 0 0 0;
    }
    .plan_about > h2 {
        display: block;
    }
    .forms_page .row .col-8 {
        display: none;
    }
    body {
        overflow-x: hidden !important;
        font-size: .8rem;
        line-height: 1rem;
    }
    h1 {
        font-size: 2em;
    }
    .wrapper {
        min-width: 100%;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-mb-1, .col-mb-2, .col-mb-3, .col-mb-4, .col-mb-5, .col-mb-6, .col-mb-7, .col-mb-8, .col-mb-9, .col-mb-10, .col-mb-11, .col-mb-12, .col-mb, .col-mb-auto, .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, .col-sm, .col-sm-auto, .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, .col-md, .col-md-auto, .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, .col-lg, .col-lg-auto, .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, .col-xl, .col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl, .col-xxl-auto {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        max-width: 100%;
        flex: inherit;
    }
    .padding5 {
        padding: 2em 1em;
    }
    .buy {
        text-align: center;
    }
    .buy .col-5 {
        margin: 2em 0 0 0;
    }
    .advantages .col-3 {
        margin: 0 0 2em 0;
    }
    .advantages .col-3:nth-child(2) {
        margin: 0 0 2em 0 !important;
    }
    .advantages .col-3:last-of-type {
        margin: 0;
    }
    .advantages .wrapper .row .col-3 > h4 {
        position: relative;
        padding: 4em 0 1.5em 0;
    }
    .partners .col-7 > h1,
    .partners .col-7 > span,
    .partners .col-7 > h2 {
        text-align: center;
    }
    .refs_lines .col-5 > small,
    .refs_lines .col-6 > small {
        width: 50%;
        display: block;
    }
    .partners .col-4 {
        margin: 2em 0 0 0;
        text-align: center;
    }
    .refs_lines {
        display: block;
    }
    .refs_lines .col-5 {
        margin: 0 0 2em 0;
    }
    .refs_lines .col-5,
    .refs_lines .col-6 {

    }
    .start .wrapper .row .col-3,
    .start .wrapper .row .col-2 {
        margin: 0 0 2em 0;
    }
    .start .wrapper .row .col-3:last-of-type {
        margin: 0;
    }
    .start .wrapper .row .col-3, .start .wrapper .row .col-2 {
        text-align: center;
        padding: 4em 0em 24em 0em;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
    }
    .place .col-4 {
        margin: 2em 0 0 0;
        text-align: center;
    }
    .place .wrapper .row .col-7 > h1 {
        color: #fff;
        font-size: 1.7em;
    }
    .place .wrapper .row .col-7 {
        background: #1f1f1f url(../images/australia.png) bottom right no-repeat;
        background-size: 250px;
        box-shadow: 0 10px 30px rgba(0,0,0,.4);
        padding: 2em;
        border-radius: 30px;
        position: relative;
    }
    .map > span {
        background: url(../images/placeholder.svg) left center no-repeat;
        background-size: 16px;
        padding: 0 0 0 2em;
    }
    .gifts {
        text-align: center;
    }
    .gifts .wrapper .row .col-8 {
        width: 100%;
        margin: 2em 0 0 0;
    }
    .gift_body {
        text-align: center;
     }
    .gifts_block .gift .gift_body .turnover:before {
        position: absolute;
        content: '';
        left: 50%;
        margin: 0 0 0 -2.5em;
        top: 0;
        width: 5em;
        height: 4px;
        background: #793E19;
        border-radius: 2px;
    }
    .statistics .col-3 {
        margin: 2em 0 0 0;
    }
    .statistics .col-3:last-of-type {
        margin: 2em 0 0 0;
        text-align: center;
    }
    footer {
        text-align: center;
        padding: 2em 1em 2em 1em;
    }
    footer .logo > a {
        display: inline-block;
        background: url(../images/logo.png) top center no-repeat;
        background-size: 24px;
        padding: 34px 0 0 0;
    }
    .footer_nav,
    .footer_contacts {
        margin: 2em 0 0 0;
    }
    .footer_nav h4.line,
    .footer_contacts h4.line {
        padding: 0;
    }
    .footer_nav h4.line:before,
    .footer_contacts h4.line:before {
        display: none;
    }
    .footer_nav > ul > li {
        padding: 0;
    }
    .footer_nav > ul > li:before {
        display: none;
    }
    .footer_contacts > span.phone {
        background: url(../images/phone-call.svg) top center no-repeat;
        background-size: 14px;
        padding: 24px 0 0 0;
    }
    .footer_contacts > span.place {
        background: url(../images/placeholder.svg) top center no-repeat;
        background-size: 14px;
        padding: 24px 0 0 0;
    }
    .social_links > ul {
        margin: 0 auto;
        width: 40%;
        align-items: center;
        justify-content: space-between;
    }
    .top_header .logo > a {
        padding: 1em 0 1em 34px;
    }
    .top_header .col-8 > ul.nav,

    .top_header .col-8 > .dashboard {
        display: none;
    }
    .navbar-header,
    .nav_mob {
        display: block;
    }
    .middle_header {
        text-align: center;
    }
    .middle_header .row .col-6 {
        padding: 0 15px 2em 15px;
    }
    .middle_header .button > a {
        display: block;
        margin: 0 auto;
        width: 70%;
    }
    .middle_header .button > a:nth-child(2) {
        margin: 1em auto 0 auto;
    }
    .partners {
        margin: 0;
    }
    .buy {
        background: url(../images/left_1.png) left top no-repeat;
    }
    .plans {
        background: none;
    }
    .plan_content > ul > li > small {
        display: block;
        margin: .5em 0 .5em 26px;
    }
    .middle_header .row .col-4 .video {
        margin: 2em 0 0 0;
    }
    .middle_header .row .col-4 .video .play {
        margin: 0 0 .5em 0;
    }
    .middle_header .row .col-4 .video .play > a {
        display: block;
        color: #fff;
        font-weight: 600;
        background: url(../images/play-button.svg) top center no-repeat;
        background-size: 40px;
        padding: 35px 0 0 0;
        min-height: 40px;
        line-height: 40px;
    }
}