
/* --------------- hello --------------- */
.hello {
    background-size: cover;
    overflow: hidden;
    position: relative;
    margin-bottom: 89px;
    z-index: 1;
}
.hello__triangle{
    position: absolute;
    bottom: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    left: 0;
    z-index: 2;
    border-color: transparent transparent transparent #fff;
    border-width: 200px 0 0 200px;
}
.hello:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -1px;
    z-index: 3;
}
.hello__triangle_r {
    left: auto;
    right: 0;
    border-color: transparent transparent #fff transparent;
}
.hello__wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;    
    padding-top: 270px;
    z-index: 2;
}
.hello__wrap h2 {    
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 100;    
    text-align: center;
    line-height: 57px;
    position: relative;
    z-index: 2;
}
.hello__wrap h2 span {
    display: block;
}
.hello__wrap .login {
    bottom: 90px;
    position: absolute;
    left: 50%;
    z-index: 3;
    margin-left: -230px;
}
.hello__video{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 1px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
.hello__video {
    opacity: 1;

}
.hello__video video {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) ;
    transform: translateX(-50%);
    background: url(/assets/img/hello.png) no-repeat;
    background-size: cover;
    -webkit-transition: 1s opacity;
    transition: 1s opacity;
}
.hello__video_loaded {
    opacity: 1;
}
.hello__video_loaded video {
    display: block;
}
/* --------------- /hello --------------- */

/* --------------- advantages --------------- */
.advantages {
    padding-bottom: 123px;
}
.advantages__wrap {
    margin: 0 auto;
    width: 1000px;
    text-align: center;
}
.advantages__wrap li {
    display: inline-block;
    padding-top: 133px;
    font-weight: 300;
    font-size: 24px;
    width: 250px;
    margin: 0 33px;
    vertical-align: top;
}
.advantages.slides li{
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.advantages.slides_active li{
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.advantages.slides_active li:nth-child(2){
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}
.advantages.slides_active li:nth-child(3){
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.advantages__wrap li div span {
    display: block;
}
.advantages__wrap li > div {
    line-height: 30px;
}
.advantages__wrap li > span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    padding-top: 12px;
}
.advantages__wrap li:nth-child(1){
    background: url("/assets/img/advantages_1.png") no-repeat center 2px;
}
.advantages__wrap li:nth-child(2){
    background: url("/assets/img/advantages_2.png") no-repeat center 8px;
}
.advantages__wrap li:nth-child(3){
    background: url("/assets/img/advantages_3.png") no-repeat center 0;
}
/* --------------- /advantages --------------- */

/* --------------- monthly-program --------------- */
.monthly-program {
    height: 540px;

    display: table;
    width: 100%;
    text-align: center;
    font-weight: 300;
}
.monthly-program > div {
    display: table-cell;
    vertical-align: middle;
    background: url("/assets/img/monthly-program.jpg") no-repeat center;
    background-size: cover;
}
.monthly-program.slides > div {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.monthly-program.slides_active > div  {
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.monthly-program > div > div {
    display: inline-block;
    width: 600px;
}
.monthly-program h2 {
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 42px;
    margin-top: -5px;
}
.monthly-program p {
    color: #46b65e;
    line-height: 29px;
    font-size: 24px;
}
/* --------------- /monthly-program --------------- */

/* --------------- stage-app ---------------------- */
.stage-app {
    background-color: #eff3f6;
    padding: 100px 0;
}
.stage-app__wrap {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.stage-app__wrap li {
    display: inline-block;
    padding-top: 133px;
    font-weight: 300;
    font-size: 24px;    
    margin: 0 33px;
    vertical-align: top;
}
.stage-app.slides li{
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.stage-app.slides_active li{
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.stage-app.slides_active li:nth-child(2){
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.stage-app.slides_active li:nth-child(3){
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
.stage-app.slides_active li:nth-child(4){
    -webkit-transition-delay: 30ms;
    transition-delay: 300ms;
}
.stage-app__wrap li div span {
    display: block;
}
.stage-app__wrap li > div {
    line-height: 30px;        
    padding-top: 30px;
}
/*.stage-app__wrap li > span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    padding-top: 12px;
    background: url("/assets/img/stage-app_num_1.png") no-repeat center 0;
}*/
.stage-app__wrap li:nth-child(1){
    background: url("/assets/img/stage-app_1.png") no-repeat center 0;
}
.stage-app__wrap li:nth-child(2){
    background: url("/assets/img/stage-app_2.png") no-repeat center 0;
}
.stage-app__wrap li:nth-child(3){
    background: url("/assets/img/stage-app_3.png") no-repeat center 0;
}
.stage-app__wrap li:nth-child(4){
    background: url("/assets/img/stage-app_4.png") no-repeat center 0;
}
/* --------------/ stage-app -----------------------*/

/* -------------- become-agent ---------------------*/

/* -------------- /become-agent --------------------*/
.become-agent {
    background-color: #ffffff;
    margin: 5% 0 6% 0;    
}
.become-agent__wrap {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.become-agent__wrap > h1{
    padding: 20px 0;
    font-size: 26px;
    font-weight: 300;
}
.become-agent_message {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.become-agent_message > div {
    padding: 5px 0;
}
.become-agent_component > div {
    padding: 5px 0;
}
.become-agent_component > div > input {
    height: 30px;
}
.become-agent_component > div > input::placeholder {
    color: black;
}
/* --------------- we-pay --------------- */
.we-pay {
    position: relative;
    padding: 153px 0 252px;
}
.we-pay:after {
    position: absolute;
    content: '';
    background: url("/assets/img/we-pay.png");
    /*background: url("/assets/img/we-pay-winter.png");*/
    width: 630px;
    height: 608px;
    top: -94px;
    left: 50%;
    margin-left: -664px;
}
.we-pay.slides:after {
    -webkit-transform: translate(0, 100px) scale(0);
    transform: translate(0, 100px) scale(0);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.we-pay.slides_active:after  {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0,0) scale(1);
    opacity: 1;
}
.we-pay > div {
    position: relative;
}
.we-pay.slides > div {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.we-pay.slides_active > div  {
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.we-pay > div > div{
    width: 460px;
    left: 50%;
    position: relative;
    margin-left: 11px;
}
.we-pay p {
    font-size: 18px;
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 37px;
}
.we-pay strong {
    font-size: 44px;
    font-weight: 300;
    line-height: 52px;
}
.we-pay .login {
    position: absolute;
    bottom: -156px;
    left: 50%;
    margin-left: -230px;
}
/* --------------- /we-pay --------------- */

/* --------------- tiles --------------- */
.tiles {
    overflow: hidden;
}
.tiles__item {
    float: left;
    overflow: hidden;
    position: relative;
}
.tiles.slides .tiles__item {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.tiles.slides_active .tiles__item  {
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.tiles.slides_active .tiles__item:nth-child(2){
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}
.tiles.slides_active .tiles__item:nth-child(3){
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.tiles.slides_active .tiles__item:nth-child(4){
    -webkit-transition-delay: 450ms;
    transition-delay: 450ms;
}
.tiles.slides_active .tiles__item:nth-child(5){
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.tiles.slides_active .tiles__item:nth-child(6){
    -webkit-transition-delay: 750ms;
    transition-delay: 750ms;
}
.tiles__item > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.tiles__card {
    background-size: cover;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
.tiles__card:after {
    position: absolute;
    height: 50%;
    bottom: 0;
    right: 0;
    left: 0;
    content: '';
    z-index: 1;
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,.3) 30%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.25) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,.3) 30%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.25) 100%);
}
.tiles.slides_active .tiles__item:nth-child(6) .tiles__card:after{
    display: none;
}
.tiles__card > div {
    width: 308px;
    position: absolute;
    bottom: 31px;
    z-index: 2;
    left: 50%;
    margin-left: -154px;
    line-height: 28px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.tiles__card > div > span {
    display: block;
    font-weight: 300;
    font-size: 14px;
    padding-top: 11px;
}
/* --------------- /tiles --------------- */

/* --------------- statistic --------------- */
.statistic ul {
    background: #ffcc00;
    text-align: center;
    color: #2c3237;
    font-weight: 300;
    padding: 38px 0 58px 60px;
}
.statistic.slides > ul {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.statistic.slides_active > ul  {
    -webkit-transform: translate(0, 0);
    transform: translate(0,0);
    opacity: 1;
}
.statistic ul li {
    display: inline-block;
    margin: 0 50px;
}
.statistic ul li:first-child {
    -webkit-transform: translate(-170px, 0);
    transform: translate(-170px, 0);
}
.statistic__payout > div {
    margin-left: 50px;
    font-size: 35px;
    margin-bottom: 43px;
}
.statistic__payout > div > span {
    font-size: 60px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    top: 20px;
}
.statistic__payout > span {
    font-size: 30px;
    width: 180px;
    display: inline-block;
    line-height: 35px;
}
.statistic__agent > div {
    font-size: 35px;
    margin-bottom: 43px;
}
.statistic__agent > div > span {
    font-size: 60px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    top: 20px;
}
.statistic__agent > span {
    font-size: 30px;
    width: 180px;
    display: inline-block;
    line-height: 35px;
}
/* --------------- /statistic --------------- */

/* --------------- help --------------- */
.help {
    overflow: hidden;
}
.help__tile {
    width: 50%;
    float: left;
    background: #f0f3f6;
}
.help__tile:first-child {
    background: #fff;
}
.help__tile > div {
    padding-top: 78.26087%;
    position: relative;
}
.help__tile > div >div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.help__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
}
.help__card > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.help__card > div > div {
    display: inline-block;
}
/* --------------- /help --------------- */

/* --------------- social --------------- */
.social {
    color: #333333;
}
.social > div {
    font-size: 24px;
    line-height: 29px;
    font-weight: 300;
    margin-bottom: 33px;
}
.social > div > span {
    display: block;
}
.social > span {
    font-size: 36px;
}
.social ul {
    text-align: center;
    padding-top: 36px;
}
.social ul li {
    display: inline-block;
    margin: 0 33px;
}
.social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
}
.social a:before,
.social a:after {
    position: absolute;
    -webkit-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    top: 50%;
    left: 50%;
    z-index: 1;
    content: '';
}
.social__f:before,
.social__f:after {
    background: url("/assets/img/social_f.png") no-repeat 0 bottom;
    width: 21px;
    height: 40px;
    position: absolute;
    margin: -20px 0 0 -10px;
    opacity: 0;
}
.social__i:before,
.social__i:after {
    background: url("/assets/img/social_i.png") no-repeat 0 bottom;
    width: 40px;
    height: 33px;
    margin: -16px 0 0 -20px;
    opacity: 0;
}
.social__t:before,
.social__t:after {
    background: url("/assets/img/social_t.png") no-repeat 0 bottom;
    width: 40px;
    height: 33px;
    margin: -16px 0 0 -20px;
    opacity: 0;
}
.social__tl:before,
.social__tl:after {
    background: url("/assets/img/social_tl.png") no-repeat 0 bottom;
    width: 40px;
    height: 33px;
    margin: -16px 0 0 -20px;
    opacity: 0;
}
.social a:before {
    background-position: 0 0;
    opacity: 1;
}
.social a:hover:after {
    opacity: 1;
}
.social a:hover:before {
    opacity: 0;
}
.help.slides .social {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.help.slides_active .social  {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
/* --------------- /social --------------- */

/* --------------- phone --------------- */
.phone {
    color: #333;
    font-weight: 300;
}
.help.slides .phone {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition-duration: 750ms;
    transition-duration: 750ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}
.help.slides_active .phone  {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}
.phone > div {
    font-size: 36px;
    margin-bottom: 57px;
}
.phone > a,
.phone > a:hover,
.phone > a:visited {
    color: #333;
    font-size: 60px;
    text-decoration: none;
}
/* --------------- /phone --------------- */

/* --------------- footer --------------- */
.footer {
    height: 720px;
    position: relative;
    overflow: hidden;
}
.footer:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("/assets/img/footer.jpg") no-repeat center top;
    background-size: cover;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: background-position 1s ease-in-out;
    transition: background-position 1s ease-in-out;
}
.footer.slides_active:after {
    background-position: center center;
}
.footer .login {
    position: absolute;
    width: 610px !important;
    height: 200px;
    top: 50% !important;
    left: 50% !important;
    margin: -100px 0 0 -305px !important;
    z-index: 1;
}
/* --------------- /footer --------------- */

@media (max-width: 1380px) {
    /* --------------- tiles --------------- */
    .tiles__item:nth-child(5),
    .tiles__item:nth-child(4) {
        display: none;
    }
    .tiles.slides_active .tiles__item:nth-child(6){
        -webkit-transition-delay: 450ms;
        transition-delay: 450ms;
    }
    /* --------------- /tiles --------------- */
}