@charset "UTF-8";
@charset 'iso-8859-15';
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
    max-width: 100%;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

abbr[title] {
    border-bottom: 1px dotted;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

* {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

.clear:after {
    content: '';
    clear: both;
    display: block;
}

input[type="text"]:focus {
    outline: none;
}

select:focus,
input:focus,
button:focus,
textarea:focus {
    outline: none;
}

html {
    background: #fff;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    overflow-x: hidden;
    font-family: 'proxima_nova__regular';
    font-size: 16px;
    line-height: 22px;
    color: #072264;
    font-weight: normal;
    background: #F2F3F7;
}

a {
    line-height: 100%;
    color: #072264;
}

a:hover {
    text-decoration: none;
    color: #072264;
}

a:active,
a:hover,
a:focus {
    outline: 0;
}

label {
    margin-bottom: 0;
}

span {
    line-height: 100%;
}
ul {
    padding: 0;
    margin: 0;
}

li {
    font-family: 'proxima_nova__regular';
    font-size: 16px;
	line-height: 22px;
	color: #072264;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    line-height: 100%;
    margin: 0;
    font-family: 'proxima_nova__bold';
	color: #072264;
	font-size:30px;
}

h1 {
    font-size: 60px;
	line-height: 73px;
}
h2 {
    font-size: 30px;
	line-height: 37px;
}


p {
	margin:10px 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    border-radius: 6px;
}

th,
td {
    border: 0;
    text-align: left;
    padding: 10px;
    font-family: 'proxima_nova__regular';
    font-size: 16px;
	line-height: 22px;
	color: #072264;
    font-weight: normal;
}

th:last-child,
td:last-child {
    border-right: 0;
}

th:first-child,
td:first-child {}

a,
button {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.transform {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.transform-top {
    position: absolute;
    top: 50%;
    left: 0;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.transform-left {
    position: absolute;
    top: 0;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_j_center {
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_j_space-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.flex_j_space-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex_j_flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex_a_flex-start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.flex_a_flex-inherit {
    -webkit-align-items: inherit;
    align-items: inherit;
}
.flex_a_flex-end {
    -webkit-align-items: flex-end;
	align-items: flex-end;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms--webkit-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

.img {
    line-height: 0;
}
.img img{
	max-width:100%;
}
.container {
    width: 1280px;
    margin: 0 auto;
    padding: 0;
    max-width: inherit;
}
b{
    font-family: 'proxima_nova__bold';
    font-weight: 100;
}
i{
	font-family: 'proxima_nova__regular_italic';
}
.i-bold{
	font-family: 'proxima_nova__bold_italic';
}

.btn{
    border: 0;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #4070F4;
    border-radius: 4px;
    font-size: 14px;
    line-height: 38px;
    color: #FFFFFF;
    font-family: 'proxima_nova__bold';
    text-transform: uppercase;
}
.btn img{
	margin-right:12px;
}
.btn:hover{
	background: #3864dd;
	color: #fff;
}

.fadeEl {
    opacity: 0;
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    transform: translateY(30%);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease-in-out;
    -moz-transition: opacity 0.8s ease, -moz-transform 0.8s ease-in-out;
    transition: opacity 0.8s ease, transform 0.8s ease-in-out;
}

.fadeEl.anim {
    opacity: 1 !important;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.fadeEl.fadeEl-left {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.fadeEl.fadeEl-left.anim {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.fadeEl.fadeEl-right {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.fadeEl.fadeEl-right.anim {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fadeElTop{
	-webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease-in-out;
    -moz-transition: opacity 0.8s ease, -moz-transform 0.8s ease-in-out;
    transition: opacity 0.8s ease, transform 0.8s ease-in-out;
	opacity:0;
	-webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
}
.fadeElTop.anim {
    opacity: 1 !important;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fadeElBottom{
	-webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease-in-out;
    -moz-transition: opacity 0.8s ease, -moz-transform 0.8s ease-in-out;
    transition: opacity 0.8s ease, transform 0.8s ease-in-out;
	opacity:0;
	-webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
}
.fadeElBottom.anim {
    opacity: 1 !important;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}




.js-loading *,
.js-loading *:before,
.js-loading *:after {
    animation-play-state: paused !important;
}

.page{
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	min-height: 100vh;
}

.anim-top {
    visibility: visible;
    -webkit-transform: translateY(20px) scale(0.9) !important;
    opacity: 0 !important;
    transform: translateY(20px) scale(0.9) !important;
    opacity: 0;
}

.anim-top.anim,
.anim-top.start-animation {
    visibility: visible;
    -webkit-transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1);
    opacity: 1;
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s, opacity 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s;
    transition: transform 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s, opacity 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s;
}

@media (max-width: 1220px) {
    .anim-top,
    .anim-top {
        visibility: visible !important;
        -webkit-transform: translateY(0) scale(1) !important;
        opacity: 1 !important;

        -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s, opacity 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s;
        transition: transform 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s, opacity 1.2s cubic-bezier(0.6, 0.2, 0.1, 1) 0.08s !important;
    }
    .fadeElAnim {
        opacity: 1 !important;
        -webkit-transform: translateY(0) !important;
        -moz-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        -o-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
    .fadeEl.fadeEl-right {
        -webkit-transform: translateY(0) !important;
        -moz-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        -o-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
    .fadeEl.fadeEl-left.anim {
        -webkit-transform: translateY(0) !important;
        -moz-transform: translateY(0) !important ;
        -ms-transform: translateY(0) !important;
        -o-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
	.fadeEl{
		opacity: 1 !important;
		-webkit-transform: translateY(0) !important;
		-moz-transform: translateY(0)!important;
		-ms-transform: translateY(0) !important;
		-o-transform: translateY(0) !important;
		transform: translateY(0) !important;
	}
	.fadeElTop{
		opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;}

}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: none;
}


/*====loader======*/
.preloader {
    box-sizing: border-box;
    -webkit-appearance: none;
    outline: 0;
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 999;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: #fff;
}

@keyframes loader-animation {
    0% {
        width: 0%;
    }
    49% {
        width: 100%;
        left: 0%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 0%;
        width: 100%;
    }
}
.loader {
    height: 5px;
    width: 100%;
    top: 0;
    position: absolute;
}
.loader__bar {
    position: relative;
    height: 5px;
    background-color: #4070F4;
    animation-name: loader-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
/*End Loader*/

.width_1030{
	width: 1030px;
}
/* header */
.header{}
.header__container{
	background: #FFFFFF;
	border-radius: 8px;
}
.page__header{
	position: fixed;
	width: 100%;
	top: 25px;
	z-index: 9;
}
.header .logo-site{
    margin-left: 27px;
    line-height: 0;
}
.logo-site img{
    max-width: 100%;
}
.header__top{
    padding: 14px 17px;
}
.header .language{
    margin-left: 30px;
}
.language{display: -webkit-flex;display: flex;-webkit-flex-direction: row;flex-direction: row;-webkit-align-items: center;align-items: center;}
.language .language__item {
    width: 36px;
    height: 36px;
    border: 2px solid #F2F3F7;
    background: transparent;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 6px;
}
.language img{
	width:28px;
}
.language .active{
    border: 2px solid #4070F4;
}
.header .btn img, .header .btn-white img{
	margin-right:12px
}
.header .btn-white{
    border: 2px solid rgba(7,34,100, 0.2);
    width: 175px;
    height: 48px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 14px;
    line-height: 38px;
    font-family: 'proxima_nova__bold';
    background: #fff;
    color: #072264;
}
.header .btn-white:hover{
    border: 2px solid rgba(7,34,100, 1);
}
.header .btn__come-in{
    width: 140px;
    height: 48px;
    font-family: 'proxima_nova__bold';
}
.header__bottom{
    background: #F2F3F7;
    border-radius: 100px 0 0 0;
    padding: 17px 27px;
}
.menu .menu__list{
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.menu .menu__item {
    border-right: 1px solid #8B98BA;
    padding-left: 23px;
    padding-right: 23px;
    line-height: 14px;
}
.menu .menu__item:last-child{
	border: 0;
	padding-right: 0;
}
.menu .menu__link{
    font-size: 14px;
    font-family: 'proxima_nova__bold';
    text-transform: uppercase;
}

/*ico-menu*/
.trigger-menu {
    position: relative;
    width: 26px;
    height: 55px;
    z-index: 100;
    display: block;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    display:none;
}
.hamburger-menu {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 26px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu__bar {
    width: 26px;
    height: 3px;
}

.hamburger-menu__bar:nth-child(2) {
    position: relative;
    transform: translateY(9px);
    background: #42a9ed;
    transition: background 0.3s cubic-bezier(0.31, -0.105, 0.43, 1.59), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu__bar:nth-child(2).animate {
    background: rgba(255, 255, 255, 0) !important;
}

.hamburger-menu__bar:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #42a9ed;
    transition: background 0.3s cubic-bezier(0.31, -0.105, 0.43, 1.59), bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu__bar:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    background: #42a9ed;
    transition: background 0.3s cubic-bezier(0.31, -0.105, 0.43, 1.59), top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu__bar:nth-child(1).animate {
    top: 6px;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 26px;
}

.hamburger-menu__bar:nth-child(3).animate {
    bottom: 12px;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 26px;
}
@keyframes photos-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes photos-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.photos-in {
    animation-name: photos-in;
    -webkit-animation-name: photos-in;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}

@media (max-width: 480px) {
    .trigger-menu {
        display: block;
        height: 100%;
    }
    .menu .menu__list {
        position: absolute;
        visibility: visible;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.8s;
        transition-duration: 0.8s;
        z-index: 8;
        top: 62px;
        display: block;
        height: auto;
        right: -235px;
        width: 235px;
        background: rgba(16, 16, 29, 0.9);
        list-style: none;
        padding: 1px 0 8px;
    }
    .menu.menu-open .menu__list {
        opacity: 1;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.8s;
        transition-duration: 0.8s;
        right: 0;
    }
}

.header__scroll .header__bottom{
	display:none;
}
.header__scroll .logo-site{
	width:100px;
}
.header__scroll .width_1030 {
    width: calc(100% - 130px);
}
.header__scroll .language .language__item{
    width: 28px;
    height: 28px;
}
.header__scroll .language .language__item img{
    width: 21px;
}
.header__scroll .btn-white, .header__scroll .btn{
    height: 35px;
    max-width: 145px;
    font-size: 12px;
}
.header__scroll .btn img{
	margin-right:7px
}
.section-title{
    opacity: 0.3;
    margin-bottom: 30px;
}
.section-title .line{
    margin-right: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    width: calc((100% - 1280px) / 2);
}
.section-title .line:before{
	content:'';
	display:block;
	width: calc(100% - 4px);
	height: 1px;
	background: #456078;
}
.section-title .line:after{
	content:'';
	display:block;
	width:4px;
	height:4px;
	border: 1px solid #456078;
	border-radius:50%;
}
.section-title h2{
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.14em;
    color: #456078;
    font-family: 'proxima_nova__regular';
    text-transform: uppercase;
}

/* banner */
#banner{
	background: url(../img/banner__bg.png)  no-repeat center;
	min-height: 1000px;
	background-size: cover;
	position: relative;
	padding-bottom: 155px;
}
#banner:after{
	content:'';
	display:block;
	background: linear-gradient(180deg, rgba(242, 243, 247, 0) 0%, #F2F3F7 100%);
	height: 476px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#banner .banner__container{
    padding-top: 275px;
    position: relative;
    z-index: 2;
}
.banner__el{
    max-width: 1770px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.banner__el .el__left-top{
    position: absolute;
    top: 0;
    left: 0;
}
.banner__el .el__right-top{
    position: absolute;
    top: -67px;
    right: -1000px;
}
.banner__el .el__left-bottom{
    position: absolute;
    left: -94px;
    top: 615px;
}
.banner__el .el__right-bottom{
    position: absolute;
    top: 431px;
    right: 130px;
    z-index: 2;
}
#banner .text{
    max-width: 650px;
    margin-top: 30px;
    margin-bottom: 85px;
}
#banner .text h1:after{
	content:'';
	display:block;
	background: #4070F4;
	width: 73px;
	height: 8px;
	border-radius: 0 0 50px 50px;
	margin-top: 30px;
}
#banner .text h1 span{
    font-family: 'lobster';
    color: #4070F4;
}
#banner .text p{
    margin: 30px 0;
    font-size: 22px;
    line-height: 38px;
}
#banner .text .btn__open-account{
    width: 200px;
    height: 48px;
}
.statistics__item{
    margin-right: 100px;
}
.statistics__item .img{
    width: 60px;
    height: 60px;
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 12px;
}
.statistics__item .value{
    color: #0C152E;
    font-size: 20px;
    line-height: 33px;
    font-family: 'proxima_nova__bold';
}
.statistics__item .tit{
    font-size: 16px;
    line-height: 16px;
    color: #456078;
}


/* about */
#about{margin-bottom: 140px;}
#about .section-title{
    margin-bottom: 40px;
}
.about__el{
    position: absolute;
    width: 700px;
    height: 660px;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
}
.about__el .el__left-top{
    position: absolute;
    top: 88px;
    left: 272px;
    z-index: 3;
}
.about__el .el__right-top{
    position: absolute;
    right: -50px;
    top: -37px;
    z-index: 1;
}
.about__el .el__middle{
    position: absolute;
    right: 80px;
    z-index: 2;
}
.about__el .el__bottom{
    position: absolute;
    bottom: -37px;
    left: 179px;
    z-index: 1;
    
}
.about__el .el__bottom img{
	transform: rotate(58deg);
}
#about .el__right-bottom{
    position: absolute;
    bottom: -70px;
    left: -85px;
}
.about__container{
	background: url(../img/about__bg.jpg) #0E4BA8 no-repeat center fixed;
	background-size: cover;
	border-radius: 25px;
	position: relative;
}
#about .text{
    padding: 50px 75px;
    max-width: 760px;
    color: #fff;
}
.h2-line:after{
	content:'';
	display:block;
	background: #4070F4;
	width: 73px;
	height: 8px;
	border-radius: 0 0 50px 50px;
	margin-top: 15px;
} 
.h2-line_white{
	color:#fff;
}
.h2-line_white:after{
	background:#fff;
}
#about .text h2{
    color: #fff;
    margin-bottom: 20px;
}
#about .text p{
    margin: 20px 0 0;
}


/* profitability */
#profitability .container{
    position: relative;
}
#profitability .el__right-top{
    position: absolute;
    top: 490px;
    right: -170px;
}
#profitability .el__left-bottom{
    position: absolute;
    bottom: -150px;
    left: -210px;
}
#profitability .section-title{
    margin-bottom: 52px;
}
.calculator{
    background: #FFFFFF;
/* Shadow */
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 20px;
    width: 590px;
    overflow: hidden;
    position: relative;
}
.calculator .calculator__container{
    padding: 0 30px 48px;
}
.calculator__header {
    margin-bottom: 77px;
    margin-top: 42px;
}
.calculator__header .tit{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
}
.calculator__header  .tit h2{
    position: relative;
    z-index: 2;
}
.calculator__header  .tit img{
    position: absolute;
    top: -20px;
}
.calculator__ps .ps{
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 999px;
    width: 108px;
    height: 46px;
    margin: 0 4px 15px;
    padding: 6px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    cursor: pointer;
} 
.calculator__ps .ps:hover{
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #aab8ca, -6px -6px 16px #FFFFFF;
}
.calculator__ps .active, .calculator__ps .active:hover{
	background: #F2F3F7;
    box-shadow: inset 4px 4px 8px rgba(190, 205, 226, 0.5), inset -5px -5px 30px #FFFFFF;
}
.calculator__ps img{
	margin-right:10px;
}
.calculator__summ{
    border-top: 2px dashed rgba(7,34,100, 0.2);
    margin-top: 25px;
    padding-top: 40px;
}
.calculator__summ .tit{
    font-size: 16px;
    line-height: 22px;
    color: #072264;
}
.calculator__summ .summ-min{
    font-size: 16px;
    line-height: 22px;
    opacity: 0.4;
}
.calculator__summ .input-flex{
    position: relative;
    margin-top: 15px;
    width: 100%;
}
.calculator__summ #summ-dep{
    background: #F2F3F7;
    box-shadow: inset 4px 4px 8px rgba(190, 205, 226, 0.5), inset -5px -5px 30px #FFFFFF;
    border-radius: 10px;
    border: 0;
    width: 100%;
    height: 73px;
    padding: 0 100px 0 40px;
    font-size: 18px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__bold';
}
#summ-dep::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    font-size: 18px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__bold';
}

#summ-dep::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    font-size: 18px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__bold';
}

#summ-dep:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    font-size: 18px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__bold';
}

#summ-dep:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    font-size: 18px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__bold';
}

#summ-dep:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#summ-dep:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#summ-dep:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#summ-dep:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.calculator__summ .calculator-ps{
    position: absolute;
    right: 30px;
    font-size: 16px;
    line-height: 22px;
    color: #072264;
    opacity: 0.4;
}
.calculator-profit{
	background:url(../img/calculator-profit.jpg) no-repeat center;
	background-size:cover;
	padding: 35px 60px 50px;
}
.calculator-profit .tit{
    color: #FFFFFF;
    opacity: 0.5;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 3px;
}
#calculator-rezult{
    font-size: 45px;
    line-height: 55px;
    font-family: 'proxima_nova__bold';
    color: #fff;
}
.calculator-profit .calculator-ps{
    font-size: 45px;
    line-height: 55px;
    font-family: 'proxima_nova__bold';
    color: #fff;
    margin-left: 13px;
}
.calculator-profit .item{
    margin: 20px 0 40px;
}
.calculator-profit .item .value{
    font-size: 16px;
    line-height: 19px;
    font-family: 'proxima_nova__bold';
    color: #fff;
}
.calculator .btn__open-account{
    width: 100%;
    height: 70px;
}

.profitability__diagram{
    width: 625px;
    padding-left: 30px;
}
.profitability__diagram p{
    margin-top: 25px;
    margin-bottom: 0;
}
.diagram{
    margin-top: 30px;
    position: relative;
    width: 595px;
}

.diagram__value .value{
	background:url(../img/diagram__value.svg) no-repeat;
	width: 187px;
	height: 98px;
	background-size: contain;
	font-family: 'proxima_nova__bold';
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	line-height: 94px;
	padding: 0 38px;
	position: absolute;
} 
.diagram__value .v1{
    bottom: 150px;
    left: -18px;
}
.diagram__value .v2{
    bottom: 210px;
    left: 129px;
}
.diagram__value .v3{
    bottom: 290px;
    left: 276px;
}
.diagram__value .v4{
    bottom: 420px;
    left: 422px;
}
.diagram__tit{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 12px;
}
.diagram__tit .tit {
    font-family: 'proxima_nova__bold';
    width: 25%;
    text-align: center;
}


/* tariff */
#tariff{
    margin-top: 157px;
}
#tariff .section-title{}
#tariff .container{
    position: relative;
}
.tariff__el{
    width: 425px;
    height: 490px;
    position: absolute;
    top: -46px;
    right: -60px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.tariff__el .el__top{
    position: absolute;
    top: -17px;
    right: 179px;
}
.tariff__el .el__right{
    position: absolute;
    top: 120px;
    right: 15px;
}
.tariff__el .el__right img{
    width: 176px;
}
.tariff__el .el__middle{
    position: absolute;
}
.tariff__el .el__middle img{
    height: 490px;
}
.tariff__el .el__left{
    position: absolute;
    top: 177px;
    left: 44px;
}
.tariff__el .el__left img{
	width:97px
}
#tariff .text{
    max-width: 910px;
    position: relative;
    z-index: 2;
}
#tariff .text p{
    margin: 20px 0;
}
.footnote{
    font-family: 'proxima_nova__bold';
    position: relative;
    padding-left: 15px;
    font-size: 15px;
}
.footnote:before{
	content:'';
	display:block;
	background: #072264;
	opacity: 0.2;
	border-radius: 0 50px 50px 0;
	height: 100%;
	width: 3px;
	position: absolute;
	left: 0;
	top: 0;
}
.tariff{
    margin-top: 40px;
    margin-bottom: 160px;
}
.tariff__item{
    width: calc(25% - 30px);
    height: 180px;
    position: relative;
    border: 0;
    padding: 30px;
    border-radius: 20px;
}
.tariff__item .img-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
    top: 0;
    left: 0;
}
.tariff__item .img-bg img{
    width: 100%;
    height: 100%;
}
.tariff__info{
    position: relative;
}
.tariff__item .tariff__name{
    position: relative;
    letter-spacing: 0.2em;
    color: #F2F3F7;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 30px;
}
.tariff__item .item{}
.tariff__item .item .tit{
    color: #FFFFFF;
    opacity: 0.5;
}
.tariff__item .item .value {
    color: #FFFFFF;
}
.tariff__item .item .value_size_big{
    font-size: 45px;


















    line-height: 55px;
    font-family: 'proxima_nova__bold';
}
.tariff__btn{
    position: absolute;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #4070F4;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.tariff__btn .ico{
    width: 48px;
    height: 48px;
    background: #4070F4;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}
.tariff__btn a{
    position: absolute;
    white-space: nowrap;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 38px;
    font-family: 'proxima_nova__bold';
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    padding-left: 22px;
    right: 0;
    opacity: 0;
    width: 174px;
    height: 100%;
}
@media (min-width: 1300px){
	.tariff__item:hover .tariff__btn{
		width: 174px;
		border-radius: 100px;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.tariff__item:hover .tariff__btn a{
		opacity: 1;
	}
	.tariff__item:hover{
		box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
	}
}




/* motivation-system */
#motivation-system{}
#motivation-system .section-title{
	margin-bottom:42px;
}
#motivation-system p{
	margin-top:20px;
}
.motivation-system__slider{
    margin-top: 42px;
    height: 390px;
    position: relative;
    z-index: 2;
}
.motivation-system__slider .swiper-slide{
    width: 800px;
    overflow: hidden;
}
.motivation-system__slider .item{
    width: 100%;
    height: 355px;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.motivation-system__slider .item:after{
	content:'';
	display:block;
	width: 100%;
	height: 215px;
	background: linear-gradient(180deg, rgba(14, 75, 168, 0) 6.02%, #0E4BA8 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.motivation-system__slider .swiper-slide-active .item{
	height:390px;
}
.motivation-system__slider .swiper-wrapper{
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.motivation-system__slider .slider-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    line-height: 0;
}
.motivation-system__slider .slider-bg img{
    width: calc(100% - 2px);
    min-height: 100%;
    position: relative;
    left: 1px;
}
.motivation-system__slider .slider-info{
    position: absolute;
    z-index: 3;
    padding: 0 70px;
    width: 100%;
    bottom: -120px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.motivation-system__slider .swiper-slide-active .slider-info{
	bottom:0;
}
.motivation-system__slider .swiper-slide-active .slider-info p{
	margin-bottom:20px
}
.motivation-system__slider .slider-info h2{
    color: #F2F3F7;
}
.motivation-system__slider .slider-info p{
    color: #FFFFFF;
    margin-top: 10px !important;
    margin-bottom: 42px;
}
.motivation-system__slider .slider-level{
    padding-bottom: 35px;
    height: 120px;
}
.motivation-system__slider .slider-level .tit{
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 8px;
}
.motivation-system__slider .slider-level .value{
    color: #FFFFFF;
    font-family: 'proxima_nova__bold';
}
.motivation-system__slider .slider-level .level-1 .value{
    font-size: 45px;
    line-height: 55px;
}
.motivation-system__slider .slider-level .level-2 .value{
    font-size: 40px;
    line-height: 49px;
}
.motivation-system__slider .slider-level .level-3 .value{
    font-size: 35px;
    line-height: 43px;
}
.motivation-system__slider .slider-level .level-4 .value{
    font-size: 30px;
    line-height: 37px;
}
.motivation-system__slider .slider-level .level-5 .value{
    font-size: 25px;
    line-height: 30px;
}
                                                	

.slider-arrow{
    width: 102px;
    height: 73px;
    background: #072264;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    top: 158px;
}
.slider-arrow:hover, .slider-arrow:active, .slider-arrow:focus{
	background: #4070F4;
}
.swiper-button-next {
    padding-right: 35px;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    border-radius: 0 100px 100px 0;
    right: calc(((100% - 800px) / 2) - 101px);
}
.swiper-button-next svg{
    width: 9px;
}
.swiper-button-prev{

    padding-left: 35px;
    border-radius: 100px 0 0 100px;
    left: calc(((100% - 800px) / 2) - 101px);
}
.swiper-button-prev svg{
    width: 9px;
}


.motivation-system__info{
	background: #0E4BA8;
	padding-top: 270px;
	margin-top: -216px;
	position: relative;
	z-index: 1;
	padding-bottom: 110px;
}
.motivation-system__give{
    position: relative;
    width: 590px;
}
.motivation-system__give h2{}
.motivation-system__give p{
    color: #F2F3F7;
}
.motivation-system__bonus{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 28px;
}
.motivation-system__bonus .item{
    margin-bottom: 22px;
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
}
.motivation-system__bonus .img{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #072264;
    width: 51px;
    height: 51px;
    border-radius: 50%;
}
.motivation-system__bonus .tit{
    color: #F2F3F7;
    margin-left: 9px;
}
.motivation-system__give .btn__open-account{
    height: 69px;
}
                                
.motivation-system__top{
	background: url(../img/motivation-system__top.jpg) no-repeat center;
	background-size: cover;
	width: 590px;
	border-radius: 20px;
	padding: 30px 0 35px 32px;
	position: relative;
}
.motivation-system__top h2{}
.motivation-system__top .table{
    margin-top: 22px;
    height: 325px;
}
.motivation-system__top table{
    width: 100%;
}
.motivation-system__top tr{}
.motivation-system__top th{
    padding: 0;
}
.motivation-system__top th:last-child, .motivation-system__top td:last-child{
	text-align:right;
	padding-right: 32px;
}
.motivation-system__top th .tit{
    color: #FFFFFF;
    opacity: 0.5;
}
.motivation-system__top td{
    padding: 34px 0 0 0;
}
.motivation-system__top td .tit{
	display:none
}
.motivation-system__top td .value{
	color: #FFFFFF;
}
.motivation-system__top .user{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.motivation-system__top .user .user__img{
    background: #0E4BA8;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 8px;
}
.motivation-system__top .user .user__img img{
    max-width: 18px;
    max-height: 18px;
}
.motivation-system__top .user .user__name{
    color: #FFFFFF;
    font-family: 'proxima_nova__bold';
    margin-right: 5px;
}
.motivation-system__top .user .user__status{
    line-height: 0;
    position: relative;
    top: -2px;
}
.motivation-system__top .user_status_king .user__name{
    color: #FFEA80;
}
.motivation-system__top .user_status_king .value{
    color: #FFEA80;
}
.motivation-system__info .el__top-center{
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translate(-50%,0);
}  
.motivation-system__info .el__top-center img{
    width: 600px;
}  
.motivation-system__info .el__left-bottom{
    position: absolute;
    bottom: -30px;
    left: -100px;
}  
.motivation-system__info .el__left-bottom img{}  
.motivation-system__info .el__right-bottom{
    position: absolute;
    bottom: 5px;
    right: 5px;
    transform: rotate(180deg);
}  
.motivation-system__info .el__right-bottom img{}                                       

/* #ps */
#ps{
	background: #FFFFFF;
	border-radius: 20px;
	margin-top: -25px;
	position: relative;
	z-index: 2;
	padding: 56px 56px 20px 56px;
}
#ps .ps__tit{
	display:none;
}
#ps .item.ps__tit{
	display:block;
}
#ps .item{
    margin-bottom: 36px;
    width: 20%;
}
#ps .ps__item{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
#ps .ps__item .img{
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 12px;
}
#ps .ps__item .tit{
    font-size: 19px;
    line-height: 19px;
    color: #0C152E;
    font-family: 'proxima_nova__bold';
    margin-top: 2px;
}
#ps .ps__item .val{
    color: #456078;
    margin-top: 6px;
    font-size: 16px;
    line-height: 16px;
}


/* #mobile-app */
#mobile-app{position: relative;z-index: 3;margin-top: -35px;}
#mobile-app .section-title{position: absolute;width: 100%;top: 94px;}
#mobile-app .text{
    width: 590px;
    position: relative;
}
#mobile-app .text h2{}
#mobile-app .text p{
    margin-top: 20px;
}
.mobile-app__advantages{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 25px;
}
.mobile-app__advantages .item{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 230px;
}
.mobile-app__advantages .img{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 16px;
    border-radius: 50%;
}
.mobile-app__advantages .img img{}
.mobile-app__advantages .tit{
    color: #0C152E;
    font-family: 'proxima_nova__bold';
}
#mobile-app .btn__come-in{
    width: 190px;
    height: 60px;
    color: #EDF0F4;
    text-transform: inherit;
}
#mobile-app .app-btn{
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 4px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 62px;
    height: 60px;
    margin-left: 16px;
}
#mobile-app .app-btn:hover{
	box-shadow: 6px 6px 16px #a5b1c2, -6px -6px 16px #FFFFFF;
}
.mobile-app__img {
    position: relative;
    width: 460px;
    height: 742px;
    right: -30px;
}
.mobile-app__img .el__top-center{
    position: absolute;
    z-index: 1;
}
.mobile-app__img .el__left{
    position: absolute;
    bottom: 75px;
    z-index: 3;
    left: -92px;
}
.mobile-app__img .el__middle-logo{
    position: absolute;
    z-index: 3;
    top: 145px;
    left: -42px;
}
.mobile-app__img .el__middle-phone{
    position: relative;
    z-index: 2;
}
.mobile-app__img .el__bottom{
    position: absolute;
    right: -115px;
    bottom: 110px;
}
.mobile-app__img .el__top-center img{
    width: 363px;
}
.mobile-app__img .el__middle-logo img{
    height: 590px;
    transform: rotate(31deg);
}
#mobile-app .el__left-bottom{
    position: absolute;
    bottom: -260px;
    left: 0;
    transform: rotate(-90deg);
}


/* footer */
.footer{
	background:url(../img/footer.jpg) no-repeat center;
	background-size:cover;
} 
.page__footer{
    position: relative;
    z-index: 3;
    margin-top: 160px;
}
.footer-feedback{
    margin-top: -90px;
    margin-bottom: 50px;
}
.footer-feedback .feedback{
    background: #FFFFFF;
    border-radius: 20px;
    width: 590px;
}
.form{
    padding: 40px 30px;
}
.form .form__tit{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    min-height: 87px;
    margin-bottom: 45px;
}
.form .form__tit h2{
    position: relative;
    z-index: 2;
}
.form .form__tit img{
    position: absolute;
    top: 0;
}
.form-group{
    margin-bottom: 37px;
}
.form-group label{
    font-size: 16px;
    line-height: 22px;
    color: #072264;
    font-family: 'proxima_nova__regular';
    font-weight: 100;
    margin-bottom: 15px;
}
.form-group .form-control{
    background: #F2F3F7;
    box-shadow: inset 4px 4px 8px rgba(190, 205, 226, 0.5), inset -5px -5px 30px #FFFFFF;
    border-radius: 10px;
    border: 0;
    padding: 0 40px;
    height: 73px;
    color: #072264;
    opacity: 1;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}
.form-group .form-control:active, .form-group .form-control:focus{
	box-shadow: inset 4px 4px 8px rgba(190, 205, 226, 0.5), inset -5px -5px 30px #FFFFFF !important;
}
.form-group textarea.form-control{
    padding: 25px 40px;
    width: 100% !important;
    min-height: 120px;
}
form .form__btn{
    width: 100%;
    height: 70px;
}
                            
.footer-feedback .contacts{
    width: 535px;
}
.footer-feedback .contacts h2{}
.footer-feedback .contacts .contacts__info{
    margin-top: 55px;
    margin-bottom: 20px;
}
.footer-feedback .contacts .contacts__info .item{
    margin-bottom: 32px;
}
.footer-feedback .contacts .contacts__info .item .img{
    margin-right: 23px;
}
.footer-feedback .contacts .contacts__info .item p, .footer-feedback .contacts .contacts__info .item a{
    color: #F2F3F7;
    font-size: 16px;
    line-height: 22px;
    font-family: 'proxima_nova__bold';
}
.footer-feedback .contacts .contacts__number{
	background: #072264;
	border-radius: 20px;
	color: #F2F3F7;
	font-size: 16px;
	line-height: 22px;
	font-family: 'proxima_nova__bold';
	padding: 40px;
	text-align: center;
}
.footer__middle{}
.footer__middle .logo-site{
    margin-right: 40px;
}
.footer__middle .language{}
.footer__middle .btn{
    margin-left: 15px;
    border: 2px solid rgba(255,255,255, 0.2);
    border-radius: 5px;
    background: transparent;
    width: 175px;
    height: 48px;
}
.footer__middle .btn:hover{
    border: 2px solid rgba(255,255,255, 1);
}
.footer__bottom{
    margin-top: 33px;
    background: rgba(7,34 ,100, 0.9);
    padding: 15px 0 16px;
}
.footer__bottom .copyright, .footer__bottom a{
    color: #F7F8FA;
    font-size: 16px;
    line-height: 160%;
}
.footer__bottom .line{
    margin: 0 15px;
    width: 2px;
    height: 15px;
    background: rgba(247,248,250 ,0.3);
}

/* FORM */
form .form-group .form-control {
}

input:focus,
input:active {
    outline: none !important;
    box-shadow: none !important;
}

form input.form-control::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form input.form-control::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form input.form-control:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form input.form-control:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form input.form-control:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

form input.form-control:focus::-moz-placeholder {
    opacity: 0;

    transition: opacity 0.3s ease;
}

form input.form-control:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

form input.form-control:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

form textarea.form-control::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form textarea.form-control::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form textarea.form-control:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form textarea.form-control:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;

    color: #072264;
    opacity: 0.5;
    font-size: 18px;
    line-height: 22px;
    font-family: 'proxima_nova__regular';
}

form textarea.form-control:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

form textarea.form-control:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}


form textarea.form-control:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

form textarea.form-control:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

select:focus {
    outline: none !important;
}
select {
    word-wrap: normal;
    transition: none;
}

/* Select */
.form-select 
.form-select {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.form-select .bootstrap-select {
    width: 100% !important;
}




.form-select .dropdown-toggle {
    background: #dfdfe1;
    border: 1px solid #fff;
    border-radius: 3px;
    height: 45px;
    padding: 0 15px;
    font-size: 18px;
    line-height: 18px;
    color: #272733 !important;
    font-family: 'latoregular';
    text-transform: inherit;
}
.bootstrap-select .dropdown-toggle .filter-option {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-select .dropdown-toggle:hover {
    outline: none !important;
}
.form-select .dropdown-toggle:focus {
    outline: none !important;
}
.open > .dropdown-toggle.btn-default:hover {
}
.form-select .open > .dropdown-toggle.btn-default {
    border-radius: 3px 3px 0 0;
    background: #3d4050;

    border: 1px solid #3d4050;
    color: #fff !important;
}
.form-select .bs-caret {
    background: url(../img/ico/bs-caret.png) no-repeat center;
    height: 100%;
    width: 15px;
}
.form-select .open .bs-caret {
    transform: rotate(180deg);
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.form-select .caret {
    border: 0 !important;
}
.open > .dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0 0 3px 3px !important;
    box-shadow: none;
    background: transparent;
}
.form-select ul.dropdown-menu li{
    margin: 16px;
}
.form-select ul.dropdown-menu a {
    padding: 0;
    font-size: 18px;
    color: #fff;
}
.form-select ul.dropdown-menu a:hover {background: transparent;color: #42a9ed;}
.form-select .dropdown-menu > .active > a,
.form-select .dropdown-menu > .active > a:hover,
.form-select .dropdown-menu > .active > a:focus {
   background: transparent;color: #42a9ed;
}



/* =====================*/
/*    leton-landing     */
/* =====================*/
.leton-landing{}
.landing__header{
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9;
}
.leton-landing .header__container{
    background: transparent;
    padding-top: 30px;
}
.header__contacts{
    position: relative;
    z-index: 2;
}
.header__contacts .contacts-mail{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    font-family: 'proxima_nova__bold';
}
.header__contacts .contacts-mail svg{
    margin-right: 10px;
}
.header__logo .logo-site{
    margin: 45px 0 0 0;
    width: 287px;
}
.header__logo .logo-site img{
	width:100%;
}
                
.leton-landing #banner{
	background: url(../img/l-img/l__bg.jpg) no-repeat top center;
	background-size: cover;
}
.leton-landing #banner .text{
    max-width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.leton-landing #banner h1:after{
	content:'';
	display:block;
	margin: 30px auto;
}
.leton-landing #banner p{
    max-width: 800px;
    margin: 30px auto 0;
}
.leton-landing #banner .mobile-app__advantages{
    -webkit-justify-content: center;
    justify-content: center;
}
.leton-landing .banner-bonus .flex{
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.leton-landing .banner-bonus{
	background:url(../img/about__bg.jpg) no-repeat center;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 10px;
	position: relative;
	padding: 43px 45px;
}
.leton-landing .banner-bonus__img{
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translate(0,-50%);
}
.leton-landing .banner-bonus .tit{
    margin-right: 90px;
}
.leton-landing .banner-bonus .tit_size_big{
    font-size: 60px;
    line-height: 38px;
    font-family: 'proxima_nova__bold';
    color: #F8FAFB;
}
.leton-landing .banner-bonus .tit_size_small{
    color: #F8FAFB;
    font-size: 22px;
    line-height: 38px;
    margin-top: 5px;
}
.leton-landing .banner-bonus .btn-pink{


    width: 256px;
    height: 86px;
}
.btn-pink{
    background: rgba(245, 16, 87, 0.5);
    border-radius: 4px;
    position: relative;
}
.btn-pink:before{




	content:'';
	display:block;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	position: absolute;
	top: 8px;
	left: 8px;
	background: #F51057;
	border-radius: 4px;
}
.btn-pink span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
}
.btn-pink:hover{
    background: rgba(245, 16, 87, 1);
}

.leton-landing #about{
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

#leton-about{
	background: url(../img/l-img/about__bg.svg) #0E4BA8 no-repeat center top fixed;
	background-size: cover;
	padding-top: 362px;
	position: relative;
	z-index: 1;
	margin-top: -350px;
	overflow: hidden;
}
#leton-about .block-men{    
	width: 635px;
    position: relative;
    left: -90px;
}
#leton-about .block-men img{
	position: relative;
    z-index: 2;
}
#leton-about .block-men .el__right-bottom{    
	position: absolute;
    bottom: 113px;
    left: -12px;
    z-index: 1;
}
.fund{    
	position: absolute;
    bottom: 50px;
    right: -20px;
    z-index: 3;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.fund .fund__item{
	position: absolute;
    width: 210px;
    height: 210px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    transform: rotate(-15deg);}
.fund .fund__item .logo-line{    
	width: 57px;
    margin-top: -13px;
}
.fund .fund__item h3{
	font-size: 32px;
    line-height: 39px;
    margin: 0 0 4px;}
.fund .fund__item p{ 
    font-size: 20px;
    line-height: 24px;
    margin: 0;}
#leton-about .text{
	width: 620px;
	padding-bottom: 80px;
}
#leton-about .text p{    
	color: #F3F4F7;
    margin: 20px 0;
}
.about__statistics{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    }
.about__statistics .item{
    border: 2px dashed #072264;
    box-sizing: border-box;
    border-radius: 10px;
    margin: 0 40px 30px 0;
    width: calc(50% - 40px);
    height: 132px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    }
.about__statistics .item .img{
    position: relative;
    z-index: 2;
    background: #072264;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 12px;
    margin-left: -31px;
    }
.about__statistics .item .value{
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    font-family: 'proxima_nova__bold';
}
.about__statistics .item .tit{
    color: #FFFFFF;
    margin-top: 4px;
}

#leton-advantages{
	background: #FFFFFF;
	border-radius: 20px;
	position: relative;
	z-index: 3;
	margin-top: -35px;
	padding: 60px 75px 100px;
}
#leton-advantages .swiper-slide{
	width: 300px;
}
#leton-advantages .item .img{
    background: #F2F3F7;
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 20px;
}
#leton-advantages .item h3{
    font-size: 20px;
    line-height: 24px;
}
#leton-advantages .item p{
    font-size: 16px;
    line-height: 150%;
    margin: 15px 0;
}
#leton-advantages .btn__open-account{
    width: 256px;
    height: 86px;
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translate(-50%,0);
}
.leton-landing #tariff{
	margin-top:70px;
}
.leton-landing .tariff{
	margin-bottom:100px;
}
.leton-landing  #motivation-system{
	margin-top:100px;
}
.footer-map{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 22px;
    position: relative;
    margin-top: 190px;
    margin-bottom: 43px;
}
.footer-map .map__img{
    width: 100%;
}
.footer-map .map__img img{
    max-width: 100%;
    width: 100%;
}
.footer-map .map__address{
    
position: absolute;
    
top: 0;
    
left: 0;
    
width: 100%;
    
height: 100%;
}
.map__info{
	box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 10px;
    background: #fff;
    position: absolute;
    padding: 13px 20px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.map__info svg{
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translate(-50%,0);
}
.leton-landing  #ps {
    margin-top: -134px;
    margin-bottom: -134px;
}
.leton-landing .page__footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
}
.leton-landing .motivation-system__info .el__left-bottom {
    bottom: 70px;
}
.landing__header .el__left-bottom{
    position: absolute;
   
    top: 21px;
    left: 48%;
}
.landing__header .el__left-bottom img{
	 opacity: 0.2;
}

.company-info{
	position:relative;
	padding-bottom: 90px;
}
.company-official h2{
    margin-bottom: 45px;
}
.company-official .certificate{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 10px;
    margin-right: 20px;
}
.company-official .certificate:hover{
	background: rgba(255, 255, 255, 0.8);
}
.company-official .certificate a{
    display: block;
    line-height: 0;
    width: 100%;
}
.company-official .certificate a img{
	max-width:100%;
}
.company-official .company-data{
    margin-left: 15px;
}
.company-official .company-data .item{
    margin: 9px 0;
}
.company-official .company-data .data__tit{
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 2px;
}
.company-official .company-data .data__value{
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    font-family: 'proxima_nova__bold';
}
.company-info .tariff__el{
    top: 60px;
    right: 42px;
}
.company-info  .tariff__el .el__middle img{
    height: 512px;
}



.mobile-app__advantages .item{
    width: 220px;
    height: 66px;
    padding: 0 10px 0 24px;
	background: #F2F3F7;
	box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
	border-radius: 10px;
	margin: 0 17px;
	text-align:left;
	position:relative;
}
.mobile-app__advantages .item .value{
    color: #0C152E;
	font-family: 'proxima_nova__bold';
	font-size: 15px;
}
.mobile-app__advantages .item .tit{
    font-family: 'proxima_nova__regular';
	font-size: 15px;
}
.leton-landing #banner .mobile-app__advantages {
    -webkit-justify-content: center;
    justify-content: center;
}
.mobile-app__advantages .img{
	margin-right:20px;
	max-width: 30px;
}
.mobile-app__advantages .item .anchor{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (max-width: 1300px){
	.mobile-app__advantages{
		display:none;
	}
	.container{
		width:calc(100% - 80px);
	}
	.banner__el .el__left-top {
		transform: scale(0.7);
		transform-origin: left top;
	}
	.landing__header .el__left-bottom img {
		transform: scale(0.7);
	}
	.header__logo .logo-site {
		margin: 0 0 0 0;
		width: 245px;
	}
	#banner .banner__container {
		padding-top: 230px;
	}
	.landing__header .el__left-bottom {
		position: absolute;
		top: -19px;
		left: 43%;
	}
	h1 {
		font-size: 50px;
		line-height: 56px;
	}
	.leton-landing .mobile-app__advantages .item{
		width:auto;
	}
	.leton-landing #banner .mobile-app__advantages {
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	
	/* about */
	.about__container {
		background: url(../img/about__bg.jpg) #0E4BA8 no-repeat center;
		background-size: cover;
	}
	#about .text {
		padding: 50px 75px;
		max-width: 100%;
	
		color: #fff;
		position: relative;
		z-index: 2;
	}
	.about__el{
		height:100%;
	}
	.about__el .el__middle, .about__el .el__left-top{
		display:none;
	}
	.about__el .el__right-top img{
		width:180px;
	}
	.about__el .el__bottom{
		bottom: -49px;
		left: 97px;
	}
	.about__el .el__bottom img{
		transform: scale(1.2) rotate(78deg);
	}
	
	.about__el .el__right-top {
		position: absolute;
		right: 25px;
		top: -136px;
		z-index: 1;
	}
	#about .el__right-bottom {
		position: absolute;
		bottom: -9px;
		left: -28px;
	}
	#about .el__right-bottom img{
		width:100px;
	}
	
	
	
	.leton-landing #banner {
		margin-bottom: -140px;
	}
	#leton-about .block-men {
		width: 635px;
		position: relative;
		left: 0;
		order: 2;
		margin: 0 auto;
	}
	#leton-about {
		background: url(../img/l-img/about__bg.svg) #0E4BA8 no-repeat center top;
		background-size: cover;
		padding-top:310px;
	}
	#leton-about .text {
		width: 100%;
		padding-bottom: 0;
	}
	.about__statistics .item{
		height:100px;
	}
	.about__statistics{
		margin-left:29px;
	}
	#leton-advantages  .swiper-slide{
		 width: calc((100% / 3) - 30px);
	}
	#leton-advantages .item {
		width:100%;
	}
	#leton-advantages {
		padding: 50px 50px 80px;
	}
	#leton-advantages .item h3 {
		font-size: 18px;
		line-height: 23px;
	}
	#leton-advantages .item p {
		font-size: 15px;
		line-height: 146%;
		margin: 13px 0;
	}
	.section-title{
		display:none;
	}
	.leton-landing #tariff {
		margin-top: 110px;
	}
	
	/* tariff */
	#tariff .text {
		max-width: 620px;
	}
	.tariff__item{
		height:auto;
	}
	.tariff__btn {
		position: relative;
		right: 0;
		width: 174px;
		margin-top: 20px;
	}
	.tariff__btn a {
		opacity: 1;
		width: 100%;
		padding-right: 45px;
		text-align: right;
		justify-content: flex-end;
	}
	.profitability__diagram{
		display:none;
	}
	.calculator{
		width:100%;
	}
	.company-info .tariff__el{
		display:none;
	}
	.swiper-pagination{
		position:relative;
		bottom:0 !important;
		margin-top:25px;
	}
	.swiper-pagination-bullet {
		width: 13px;
		height: 13px;
	}
	#ps{
		padding:50px;
	}
	#ps .ps__tit{
		display:block;
		margin-bottom:30px;
	}
	#ps .item.ps__tit{
		display:none;
	}
	#ps .ps__item{
		margin-bottom:0;
	}
	.leton-landing #ps{
			margin: -150px auto;
	}

}
@media (max-width: 900px){
	.header__logo .logo-site {
		width: 220px;
		margin-top: 20px;
	}
	h1 {
		font-size: 39px;
		line-height: 45px;
	}
	.leton-landing #banner p{
		max-width: 80%;
		font-size: 20px;
		line-height: 28px;
	}
	.leton-landing #banner p br{
		display:none
	}
	.leton-landing #banner .mobile-app__advantages{
		margin-top:70px;
	}
	.leton-landing .banner-bonus__img{
		display:none;
	}
	.leton-landing .banner-bonus .flex {
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.leton-landing .banner-bonus .tit {
		margin-right: 0;
	}
	#about .text {
		padding: 50px;
	}
	#about .el__right-bottom {
		position: absolute;
		bottom: -20px;
		left: -34px;
	}
	.about__el .el__right-top {
		position: absolute;
		right: -22px;
		top: -108px;
	}
	.about__el .el__bottom{
		display:none;
	}
	.about__el .el__right-top img {
		width: 145px;
	}
	h2 {
		font-size: 26px;
		line-height: 31px;
	}
	.about__statistics {
		margin-left: 29px;
		margin-top: 40px;
	}
	.leton-landing .banner-bonus .tit_size_big {
		font-size: 47px;
	}
	.leton-landing .banner-bonus .tit_size_small{
		font-size:19px;
	}
	#leton-about .block-men img.men{
		height:458px;
	}
	#leton-advantages .item {
		width: 100%;
		text-align: center;
	}
	#leton-advantages .item .img{
		margin:0 auto 20px;
	}
	#leton-advantages .item h3 br{
		display:none;
	}
	.tariff__el{
	    opacity: 0.06;
		width: 100%;
		right: 97px;
		transform: scale(2);
		top: 13px;
	}
	
	.footnote{
		font-size:14px;
	}
	.leton-landing .tariff {
		margin-bottom: 65px;
	}
	.calculator__header{
		margin-top:60px;
	}
	.motivation-system__slider .swiper-slide{
		width:100%;
	}
	.slider-arrow{
		display:none;
	}
	.company-official .certificate{
		width:30%;
	}
	#leton-advantages .swiper-slide{
		width:100%;
	}
}
@media (max-width: 600px){
	.banner__el .el__left-top {
    	transform: scale(0.5);}
	.container {
		width: calc(100% - 40px);
	}
	.leton-landing .header__container{
		padding-top:20px;
	}
	.header__logo .logo-site {
		width: 194px;
	}
	.landing__header .el__left-bottom img {
		transform: scale(0.5) rotate(23deg);
	}
	.landing__header .el__left-bottom {
		position: absolute;
		top: -8px;
		left: 28%;
		z-index: 0;
	}
	.motivation-system__slider .slider-bg img{
		width: auto;
		min-height: 100%;
		min-width: 100%;
		position: relative;
		left: 1px;
	}
	#banner .text h1 span {
		letter-spacing: 2px;
	}
	.leton-landing #banner p{
		max-width: 94%;
		font-size: 19px;
	}
	.leton-landing #banner .mobile-app__advantages {
		margin: 50px 0;
	}
	.leton-landing .mobile-app__advantages .item {
		width: 143px;
	}
	.leton-landing .banner-bonus .flex {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.leton-landing .banner-bonus .tit_size_big {
		font-size: 38px;
	}
	.leton-landing .banner-bonus .tit_size_small {
		font-size: 16px;
		line-height: 16px;
	}
	.leton-landing .banner-bonus .btn-pink {
		width: 100%;
		height: 70px;
		margin-top: 25px;
	}
	.leton-landing .banner-bonus {
		padding: 35px 30px 40px;
	}
	#about .text{
		padding: 30px;
	}
	.about__el .el__right-top {
		right: -18px;
		top: -113px;
	}
	.about__el .el__right-top img{
		width: 84px;
	}
	h2{
		font-size: 20px;
		line-height: 24px;
	}
	.mobile-app__advantages .tit{
		font-size:15px;
	}
	body{
		font-size:15px;
	}
	#about .el__right-bottom{
		bottom: 22px;
		left: -18px;
	}
	#about .el__right-bottom img{
		width: 62px;
	}
	#leton-about{
		padding-top:270px;
	}
	.about__statistics .item {
		height: 100px;
		display: block;
		text-align: center;
	}
	.about__statistics .item .img {
		margin: -30px auto 15px;
	}
	.about__statistics .item {
		height: 115px;
		display: block;
		text-align: center;
		margin: 0 20px 40px 0;
		width: calc(50% - 20px);
	}
	.about__statistics {
		margin-left: 0;
		margin-top: 49px;
		margin-right: -10px;
	}
	.about__statistics .item .value {
		font-size: 15px;
		line-height: 18px;
	}
	#leton-about .block-men {
		width: 100%;
	}
	#leton-about .block-men img.men {
		height: 315px;
	}
	#leton-about .block-men .el__right-bottom {
		position: absolute;
		bottom: 14px;
		left: -50px;
		z-index: 1;
		transform: scale(0.6);
	}
	.fund {
		transform: scale(0.6);
		position: absolute;
		bottom: -24px;
		right: -71px;
	}
	.leton-landing #tariff {
		margin-top: 85px;
	}
	#leton-advantages .btn__open-account {
		height: 70px;
		bottom: -35px;
	}
	.tariff__el {
		opacity: 0.06;
		width: 100%;
		right: 131px;
		transform: scale(2.3) rotate(17deg);
		top: 25px;
	}
	.leton-landing .tariff {
		margin-bottom: 0;
	}
	#profitability{
		margin-top:40px;
	}
	.calculator .calculator__container {
		padding: 0 20px 30px;
	}
	.calculator__ps .ps{
		width:103px;
			font-size: 14px;
	}
	.calculator__ps img {
		margin-right: 5px;
	}
	.calculator__summ {
		margin-top: 20px;
		padding-top: 15px;
	}
	.calculator__summ #summ-dep {
		height: 55px;
		padding: 0 100px 0 20px;
	}
	#calculator-rezult, .calculator-profit .calculator-ps {
		font-size: 32px;
		line-height: 47px;
	}
	.calculator-profit {
		padding: 35px 20px 50px;
	}
	#calculator-rezult{
			max-width: calc(100% - 100px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.calculator-profit .item {
		margin: 10px 0 25px;
	}
	.calculator .btn__open-account {
		width: 100%;
		height: 60px;
	}
	.calculator-profit .item .value {
		font-size: 14px;
	}
	.calculator-profit .tit{
		font-size:15px;
	}
	.leton-landing #motivation-system {
		margin-top: 50px;
	}
	.motivation-system__slider .slider-info{
		padding:30px;
		position:relative;
		bottom:0 !important;
	}
	.motivation-system__slider .slider-level{
		height:auto;
		justify-content: center;
	}
	.motivation-system__slider .slider-level .level{
		margin: 0 20px 20px;
	}
	.motivation-system__slider .item:after{
		height:100%;
	}
	.company-official .certificate {
		width: calc(50% - 20px);
	}
	.motivation-system__info .el__left-bottom{
		display:none;
	}
	.company-official .company-data {
		margin-left: 15px;
		width: 100%;
		margin-top: 20px;
	}
	.company-official .company-data .item {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-align-items: center;
		align-items: center;
	}
	.company-official .company-data .data__tit {
		margin-bottom: 0;
		margin-right: 10px;
	}
	.footer-map .map__address {
		position: relative;
	}
	.map__info {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
	}
	.footer-map .map__img {
		margin-top: 25px;
	}
	.copyright{
		width:100%;
	}
	.footer__middle .flex{
		width:100%;
	}
	.footer__middle .btn{
		margin: 0;
		width: calc(50% - 10px);
		margin-right: 20px;
	}
	.footer__middle .btn:last-child{
		margin:0;
	}
	.footer__middle .logo-site {
		width: 150px;
	}
}
@media (max-width: 400px){
	.header__logo .logo-site {
    	width: 170px;
	}
	h1 {
		font-size: 30px;
		line-height: 39px;
	}
	#banner .banner__container {
		padding-top: 175px;
	}
	.landing__header .el__left-bottom {
		position: absolute;
		top: -26px;
		left: 38%;
		z-index: 0;
	}
	.leton-landing #banner p {
		max-width: 100%;
		font-size: 16px;
		line-height: 23px;
	}
	.leton-landing .mobile-app__advantages .item {
		width: 50%;
	}
	.mobile-app__advantages .img {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}
	.mobile-app__advantages .tit {
		font-size: 14px;
	}
	.leton-landing #banner .mobile-app__advantages {
		margin: 22px 0 0;
	}
	.leton-landing #banner .text{
		margin-bottom:20px;
	}
	.leton-landing .banner-bonus .tit_size_big {
		font-size: 30px;
	}
	.leton-landing .banner-bonus .btn-pink {
		width: 100%;
		height: 66px;
	}
	.leton-landing #about {
		margin-top: -170px;
	}
	h2 {
		font-size: 19px;
	}
	#about .text {
		padding: 30px 20px;
	}
	.about__statistics .item{
		width:100%;
	}
	#leton-about .block-men img.men {
		height: 245px;
	}
	.fund {
		transform: scale(0.5);
		position: absolute;
		bottom: -44px;
		right: -96px;
	}
	#leton-advantages {
		padding: 30px 20px 50px;
	}
	#leton-advantages .btn__open-account {
		height: 64px;
		bottom: -35px;
		width: 90%;
	}
	.tariff__item .tariff__name{
		margin-bottom:10px;
	}
	.calculator__ps .ps {
		width: 100%;
	}
	#calculator-rezult, .calculator-profit .calculator-ps {
		font-size: 23px;
		line-height: 35px;
	}
	.calculator-profit .item {
		margin: 9px 0 9px;
	}
	.calculator .btn__open-account{
		margin-top:20px;
	}
	.calculator-profit {
		padding: 32px 20px 30px;
	}
	.motivation-system__slider .slider-level{
		display:none;
	}
	.motivation-system__slider .swiper-slide-active .item, .motivation-system__slider .item {
		height: auto;
	}
	.motivation-system__slider .item:after{
		bottom:-4px;
	}
	.motivation-system__info .el__top-center {
		position: absolute;
		left: 50%;
		top: -239px;
		transform: translate(-50%,0) scale(0.5);
	}
	.motivation-system__info{
		padding-top:80px;
	}
	.company-official .company-data .data__tit {
		white-space: nowrap;
	}
	.leton-landing #ps{padding:20px;}
	.footer__middle .btn {
		margin: 0;
		width: 100%;
		margin: 0 0 20px;
	}
}



/* NEW */
.tariff__item .img-bg{
	height:180px;
}
.tariff__item{
	height:auto;
}
@media (min-width: 1300px){
	.tariff__item:hover{
		box-shadow: none;
	}
	.tariff__item:hover .img-bg{
		box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
	}
}
.tariff__btn{
    z-index: 2;
}
.tariff__description{
    box-shadow: 6px 6px 16px #BECDE2, -6px -6px 16px #FFFFFF;
    border-radius: 10px;
    background: #fff;
    width: calc(100% + 60px);
    position: relative;
    left: -30px;
    margin-top: 35px;
    z-index: 1;
    padding: 22px 20px;
}
.tariff__description .flex{
	margin-bottom:5px;
}
.tariff__description .arrowbg{
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translate(-50%,0) rotate(180deg);
}
.tariff__description .tit{
    color: #072264;
    opacity: 0.5;
}
.tariff__description .value{
    font-family: 'proxima_nova__bold';
}
.tariff__description .tariff__btn{
	display:none;
}
@media (max-width: 1300px){
	.tariff__description{
		margin-top: 22px;
		border-radius:0 0 10px 10px;
		box-shadow:none;
		padding: 22px 20px;
	}
	.tariff__description .arrowbg{
		display:none;
	}
	.tariff__item .img-bg{
		border-radius:10px 10px 0 0;
	}
	.tariff__btn{
		display:none;
	}
	.tariff__description .tariff__btn{
		display:block;
	}
}


/* ps */
#ps .ps__item{
    width: auto;
}
#ps .ps__item .ps__info{
    position: absolute;
    background: #FFFFFF;
    box-shadow: 6px 6px 16px #BECDE2;
    border-radius: 10px;
    width: 155px;
    height: 65px;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    top: -82px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#ps .ps__item:hover .ps__info{
    opacity: 1;
    transform: translate(-50%, 0px);
}
#ps .ps__item .ps__info .arrowbg{
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translate(-50%,0);
}
#ps .ps__item .tit{
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}
#ps .ps__item .img{
	margin:0;
}
@media (max-width: 1300px){
    #ps .ps__item .ps__info{
    	opacity: 1 !important;
    	transform: none !important;
    	position:relative;
    	left: 0;
    	top: 0;
    	background: transparent;
    	box-shadow: none;
    	width: auto;
    	margin-left: 20px;
    }
    #ps .ps__item .ps__info .arrowbg{
    	display:none;
    }
}
.about__el .el__middle img{
	max-width: 596px;
}