.loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: rgba(61,106,202,1);
    background: -moz-linear-gradient(-45deg, rgba(61,106,202,1) 0%, rgba(240,66,75,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(61,106,202,1)), color-stop(100%, rgba(240,66,75,1)));
    background: -webkit-linear-gradient(-45deg, rgba(61,106,202,1) 0%, rgba(240,66,75,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(61,106,202,1) 0%, rgba(240,66,75,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(61,106,202,1) 0%, rgba(240,66,75,1) 100%);
    background: linear-gradient(135deg, rgba(61,106,202,1) 0%, rgba(240,66,75,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d6aca', endColorstr='#f0424b', GradientType=1 );
}
.loader > div{
    position: absolute;
    padding-left: 245px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.loading{
    position: absolute;
    left: 0;
    top:; 0;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    overflow: hidden;
}
.loading img{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
}
.loading img:nth-child(1){
    -webkit-transition: left 0.75s ease-out 0.75s;
    -moz-transition: left 0.75s ease-out 0.75s;
    -o-transition: left 0.75s ease-out 0.75s;
    transition: left 0.75s ease-out 0.75s;
}
.loading img:nth-child(2){
    -webkit-transition: left 0.5s ease-out 0.5s;
    -moz-transition: left 0.5s ease-out 0.5s;
    -o-transition: left 0.5s ease-out 0.5s;
    transition: left 0.5s ease-out 0.5s;
}
.loading img:nth-child(3){
    -webkit-transition: left 0.25s ease-out 0.25s;
    -moz-transition: left 0.25s ease-out 0.25s;
    -o-transition: left 0.25s ease-out 0.25s;
    transition: left 0.25s ease-out 0.25s;
}
.show .loading img:nth-child(1){
    left: 0;
    -webkit-transition: left 0.25s ease-out 0.25s;
    -moz-transition: left 0.25s ease-out 0.25s;
    -o-transition: left 0.25s ease-out 0.25s;
    transition: left 0.25s ease-out 0.25s;
}
.show .loading img:nth-child(2){
    left: -25%;
    -webkit-transition: left 0.5s ease-out 0.5s;
    -moz-transition: left 0.5s ease-out 0.5s;
    -o-transition: left 0.5s ease-out 0.5s;
    transition: left 0.5s ease-out 0.5s;
}
.show .loading img:nth-child(3){
    left: -60%;
    -webkit-transition: left 0.75s ease-out 0.75s;
    -moz-transition: left 0.75s ease-out 0.75s;
    -o-transition: left 0.75s ease-out 0.75s;
    transition: left 0.75s ease-out 0.75s;
}

.loader .title{
    margin: 50px;
    display: block;
    font-weight: 600;
    font-size: 32px;
    line-height: 45px;
    text-align: left;
    color: #fff;
}
.loader .title div{
    transform: translateX(50px);
    opacity: 0;
    -webkit-transition: all 1.0s ease-out 0.5s;
    -moz-transition: all 1.0s ease-out 0.5s;
    -o-transition: all 1.0s ease-out 0.5s;
    transition: all 1.0s ease-out 0.5s;
}

.loader.show .title div:nth-child(1){
    transform: translateX(0px);
    opacity: 1;
    -webkit-transition: all 0.5s ease-out 1.25s;
    -moz-transition: all 0.5s ease-out 1.25s;
    -o-transition: all 0.5s ease-out 1.25s;
    transition: all 0.5s ease-out 1.25s;
}
.loader.show .title div:nth-child(2){
    transform: translateX(0px);
    opacity: 1;
    -webkit-transition: all 0.5s ease-out 1.45s;
    -moz-transition: all 0.5s ease-out 1.45s;
    -o-transition: all 0.5s ease-out 1.45s;
    transition: all 0.5s ease-out 1.45s;
}
.loader.show .title div:nth-child(3){
    transform: translateX(0px);
    opacity: 1;
    -webkit-transition: all 0.5s ease-out 1.65s;
    -moz-transition: all 0.5s ease-out 1.65s;
    -o-transition: all 0.5s ease-out 1.65s;
    transition: all 0.5s ease-out 1.65s;
}

.loader.hide .title div:nth-child(1),
.loader.hide .title div:nth-child(2),
.loader.hide .title div:nth-child(3){
    opacity: 0;
    transform: translateX(0px);
}
.loader.hide .loading{
    opacity: 0;
    -webkit-transition: all 1.0s ease-out 0.5s;
    -moz-transition: all 1.0s ease-out 0.5s;
    -o-transition: all 1.0s ease-out 0.5s;
    transition: all 1.0s ease-out 0.5s;
}
.loader.hide{
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: opacity 2.0s ease-out 1.5s, height 0s ease-out 3s;
    -moz-transition: opacity 2.0s ease-out 1.5s, height 0s ease-out 3s;
    -o-transition: opacity 2.0s ease-out 1.5s, height 0s ease-out 3s;
    transition: opacity 2.0s ease-out 1.5s, height 0s ease-out 3s;
}


.about{
    padding: 75px 155px;
    padding-top: 100px;
}
.about h1{
    font-size: 24px;
    font-weight: 600px;
}

.stats{
    position: relative;
    padding-left: 135px;
    padding-right: 65px;
    background: url('../images/stripe.gif');
    margin-bottom: 143px;
}
.stats-container{
    position: relative;
}
.stats-item{
    position: relative;
    float: left;
    width: 25%;
    z-index: 2;
    cursor: default;
}
.stats-item div{
    position: relative;
    display: inline-block;
    padding: 0 20px;
    line-height: 96px;
    font-weight: 600;
    font-size: 67px;
}
.stats-item .stats-text{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 96px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
}
.stats-hover{
    position: absolute;
    top: 0px;
    right: 200%;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transition: right 0.2s ease-in;
    -moz-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
}
.stats-hover-left{
    position: absolute;
    top: 0;
    right: -20px;
    width: 70px;
    height: 100%;
    background: url('../images/stats-hover.png') center left;
}
.stats-hover-left:after{
    position: absolute;
    top: -2px;
    right: 35px;
    width: 1260px;
    height: 100%;
    background: url('../images/stripe.gif');
    content: '';
    }
.stats-hover-right{
    position: absolute;
    margin-right: -55px;
    top: 0;
    right: 0;
    width: 70px;
    height: 100%;
    background: url('../images/stats-hover.png') center right;
    -webkit-transition: right 0.2s ease-in;
    -moz-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
}


.clients{
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
    margin-top: 90px;
    margin-bottom: 50px;
}
.clients-bg:before{
    position: absolute;
    display: block;
    width: 100%;
    height: 117px;
    left: -100%;
    top: 0;
    background: url('../images/clients-bg-left.gif');
    content: '';
}
.clients-bg:after{
    position: absolute;
    display: block;
    width: 100%;
    height: 117px;
    right: -100%;
    top: 0;
    background: url('../images/clients-bg-right.gif');
    content: '';
}
.clients img{
    position: relative;
    z-index: 1;
    max-width: 100%;
}
.clients img{
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}

.clients img:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -webkit-transition: filter 0.25s ease-out;
    -moz-transition: filter 0.25s ease-out;
    -o-transition: filter 0.25s ease-out;
    transition: filter 0.25s ease-out;
}
.clients-bg{
    position: absolute;
    display: block;
    width: 100%;
    height: 117px;
    background: url('../images/clients-bg.png') center ;
    top: 15px;
}





/*responsive--------------------------------------------------*/

@media(max-width: 1410px){
    .loader > div{
        padding-left: 222px;
    }
    .loading{
        width: 222px;
        height: 222px;
    }
    .loader .title{
        margin-left: 40px;
            margin-right: 0;
        font-size: 31px;
        line-height: 41px;
    }
}

@media(max-width: 1320px){
    header .logo{
        margin-left: 65px;
    }
    header .phones{
        padding-right: 65px;
    }
    .topSlider span{
        padding: 0 70px;
    }
    .clients{
        margin-top: 80px;
    }
    .clients{
        margin-bottom: 40px;
    }
}

@media(max-width: 1120px){
    .loader > div{
        padding-left: 190px;
    }
    .loading{
        width: 190px;
        height: 190px;
    }
    .loader .title{
        margin: 35px;
        margin-right: 0;
        font-size: 27px;
        line-height: 38px;
    }
    .about{
        padding: 50px 100px;
        padding-top: 60px;
    }
    .about br{
        display: none;
    }
    .stats{
        padding-left: 75px;
    }
    .stats-item div{
        font-size: 56px;
        line-height: 78px;
    }
    .stats-hover{
        top: -2px;
    }
    .stats-hover-left:after{
        top: 0;
    }
    .stats-item .stats-text{
        padding-top: 78px;
        line-height: 18px;
        font-size: 15px;
    }
    .stats-item .stats-text{
        min-width: 150px;
        font-size: 15px;
    }
    .products h2 {
        font-size: 27px;
    }
    .stats-item div{
        font-size: 62px;
    }
    .clients{
        margin-top: 60px;
    }
}

@media(max-width: 1000px){
    .topSlider .title{
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 16px;
    }
    .products .info{
        padding: 0 40px;
    }
    .products h2 {
        font-size: 26px;
    }
    .products p {
        margin: 20px 0;
        line-height: 21px;
    }
    .products .product{
        padding-top: 70px;
        height: 575px;
    }
    .clients{
        margin-top: 30px;
        margin-bottom: 30px;
    }
}



@media(max-width: 950px){
    .loader > div{
        padding-left: 170px;
    }
    .loading{
        width: 170px;
        height: 170px;
    }
    .loader .title{
        margin-left: 30px;
        font-size: 24px;
        line-height: 34px;
    }
    .about {
        padding: 50px 80px;
        padding-top: 65px;
    }
    .about h1{
        font-size: 23px;
    }
    .stats {
        padding-left: 60px;
        margin-bottom: 130px;
    }
    .stats-item div {
        font-size: 50px;
    }
    .stats-item .stats-text{
        min-width: 100px;
        font-size: 16px;
        padding-top: 76px;
        line-height: 16px;
    }
    .products .info{
        padding: 0 35px;
    }
}




@media(max-width: 900px){
    .about h1 {
        font-size: 21px;
    }
    .stats-item div {
        font-size: 42px;
    }
    .stats-item .stats-text{
        font-size: 15px;
    }
    .products .info{
        padding: 0 30px;
    }
    .products h2 {
        font-size: 25px;
    }
    .products .product{
        padding-top: 60px;
    }
}


@media(max-width: 850px){
    .loader > div{
        padding-left: 150px;
    }
    .loading{
        width: 150px;
        height: 150px;
    }
    .loader .title{
        margin-top: 30px;
        margin-left: 25px;
        font-size: 20px;
        line-height: 30px;
    }
}

@media(max-width: 830px){
    .products .main .info{
        position: static;
        transform: none;
        width: auto;
        padding: 28px 35px;
        padding-bottom: 35px;
    }
    .products .main .image{
        width: 100%;
    }
    .products p {
        margin: 15px 0;
        font-size: 15px;
    }
    .products .main p {
        font-size: 16px;
    }
    .products .product,
    .products .product:first-child,
    .products.features .product,
    .products.features .product:first-child{
        width: 100%;
        height: auto;
        border-left: none;
        padding-top: 30px;
        border-bottom: solid 1px #ccc;
    }
    .products .info{
        padding-left: 280px;
        padding-bottom: 35px;
    }
    .products.features .info{
        padding-left: 30px;
    }
    .products .image{
        position: absolute;
        height: 100%;
        left: -65px;
        top: 0px;
        width: 45%;
    }
    .product .image img:first-child{
        width: 370px;
    }
    .product .stripes-hover-1,
    .product .stripes-hover-2{
        bottom: 50px;
    }
    .product:hover .stripes-hover-1{
        left: -90%;
    }
    .product:hover .stripes-hover-2{
        left: -300px;
    }
}



@media(max-width: 800px){
    .top {
        padding-top: 40px;
    }
    header .logo{
        margin-left: 25px;
    }
    header .phones {
        padding-right: 30px;
    }
    .topSlider .title{
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 10px;
    }
    .about{
        padding: 40px 55px;
        padding-top: 50px;
    }
    .about h1{
        font-size: 19px;
    }
    .stats {
        padding-left: 30px;
        margin-bottom: 115px;
    }
    .stats-item .stats-text{
        font-size: 14px;
    }
}

@media(max-width: 750px){
    .topSlider .title{
        font-size: 46px;
        line-height: 54px;
    }
    .stats-item div{
        font-size: 38px;
        line-height: 66px;
    }
    .stats-hover {
        top: -2px;
    }
    .stats-hover-left,
    .stats-hover-right{
        height: 75px;
        top: 2px;
    }
    .stats-hover:after,
    .stats-hover-right:after{
        display: block;
        position: absolute;
        width: 100%;
        height: 10px;
        background: #fff;
        right: -6px;
        bottom: -10px;
        content: '';
    }
    .stats-item .stats-text{
        padding-top: 64px;
    }
    .stats-hover-right:after{
        bottom: 1px;
    }
    .stats-item .stats-text{
        font-size: 13px;
        line-height: 15px;
        padding-top: 64px;
    }
    .about{
        padding: 35px 50px;
        padding-top: 45px;
    }
    .topSlider span:not(.title) br{
        display: none;
    }
}

@media(max-width: 700px){
    .topSlider .title{
        font-size: 42px;
        line-height: 50px;
    }
    .topSlider span{
        font-size: 18px;
    }
    .phones > div{
        float: none;
    }
    .about h1{
        font-size: 18px;
    }
    .products .info{
        padding-bottom: 25px;
    }
    .product:hover .stripes-hover-1{
        left: -110%;
    }
}

@media(max-width: 650px){

    .topSlider .title{
        font-size: 38px;
        line-height: 46px;
    }
    .topSlider span{
        line-height: 26px;
    }
    .stats-item div {
        font-size: 34px;
    }
    .about h1{
        font-size: 17px;
    }
    .about{
        padding: 30px 40px;
        padding-top: 45px;
    }
    .stats {
        padding-left: 20px;
        margin-bottom: 100px;
    }
    .stats-item .stats-text {
        max-width: 150px;
    }
    .caps-link{
        font-size: 12px;
    }
    .products h2 {
        font-size: 24px;
    }
    .products p{
        margin-top: 10px;
        font-size: 15px;
        line-height: 19px;
    }
    .product:hover .stripes-hover-1{
        left: 0;
    }
}

@media(max-width: 600px){
    .loader > div {
        padding-left: 140px;
    }
    .loading{
        width: 140px;
        height: 140px;
    }
    .loader .title{
        font-size: 19px;
        line-height: 28px;
    }
    header .logo{
        margin-left: 65px;
    }
    .topSlider .title{
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 8px;
    }
    .topSlider span{
        line-height: 24px;
        padding: 0 60px;
    }

    .phones{
        float: left;
        padding-left: 47px;
        padding-top: 10px;
        padding-right: 0;
    }
    .phones > div{
        float: left;
    }
    .about h1{
        font-size: 16px;
    }
    .about {
        padding: 35px 45px;
        padding-top: 50px;
    }
    .stats-item .stats-text {
        max-width: 100px;
    }
    .products .info{
        padding: 0 30px;
        padding-bottom: 255px;
    }
    .products.features .info{
        padding-bottom: 25px;
    }
    .products .image{
        left: 0;
        width: 100%;
    }
    .product .image img:first-child{
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(max-width: 550px){
    .loader > div {
        padding-left: 120px;
    }
    .loading{
        width: 120px;
        height: 120px;
    }
    .loader .title{
        font-size: 17px;
        line-height: 24px;
        margin-left: 20px;
        margin-top: 20px;
    }
    .topSlider .title{
        font-size: 30px;
        line-height: 40px;
    }
    .topSlider span{
        font-size: 17px;
        line-height: 22px;
        padding: 0 60px;
    }

    .about {
        padding: 30px 35px;
        padding-top: 40px;
    }
    .stats-item div {
        font-size: 29px;
        line-height: 53px;
    }
    .stats{
        padding-left: 16px;
    }
    .stats-hover-left,
    .stats-hover-right {
        height: 53px;
    }
    .stats-hover:after,
    .stats-hover-right:after{
        display: none;
    }
    .stats-item .stats-text{
        font-size: 12px;
        padding-top: 53px;
        min-width: 80px;
    }
    .products h2 {
        font-size: 23px;
    }
    .products p{
        font-size: 14px;
        line-height: 18px;
    }
}

@media(max-width: 500px){
    header .phones{
        font-size: 14px;
        padding-left: 70px;
    }
    .topSlider .title{
        font-size: 28px;
        line-height: 36px;
    }
    .topSlider span{
        line-height: 20px;
        font-size: 16px;
    }
    .stats{
        background: transparent;
        margin-bottom: 30px;
    }
    .stats-item{
        width: 50%;
    }
    .stats-hover{
        display: none;
    }
    .stats-item div{
        padding-bottom: 35px;
    }
    .stats-item .stats-text{
        min-width: 150px;
        max-width: 100%;
        padding-top: 45px;
    }
}

@media(max-width: 450px){
    .topSlider .title{
        font-size: 26px;
        line-height: 34px;
    }
    .topSlider span {
        font-size: 15px;
    }
    .about {
        padding: 15px 30px;
        padding-top: 32px;
    }
    .stats{
        padding-left: 10px;
        margin-bottom: 20px;
    }
    .stats-item .stats-text{
        min-width: 130px;
    }
    .products .main .info{
        padding: 28px;
    }
    .clients h2{
        line-height: 26px;
        margin-bottom: 15px;
    }
}


@media(max-width: 400px){
    .loader > div {
        padding-left: 100px;
    }
    .loading{
        width: 100px;
        height: 100px;
    }
    .loader .title{
        font-size: 15px;
        line-height: 20px;
        margin-left: 18px;
    }
    header .logo,
    header .phones{
        width: 245px;
        font-size: 14px;
        float: none;
        padding-left: 0;
        padding-right: 0;
        background-size: contain;
        background-repeat: no-repeat;
        margin: 0 auto;
    }
    .topSlider .title{
       font-size: 24px;
       line-height: 30px;
    }
    .topSlider span{
        line-height: 18px;
        padding: 0 50px;
    }

    .about h1{
        font-size: 15px;
    }
    .about {
        padding: 20px 25px;
        padding-top: 28px;
    }
    .stats {
        padding-left: 5px;
    }
    .products h2 {
        font-size: 22px;
    }
    .products p {
        margin-top: 8px;
    }
}


@media(max-width: 350px){
    .loader > div {
        padding-left: 80px;
    }
    .loading{
        width: 80px;
        height: 80px;
    }
    .loader .title{
        font-size: 13px;
        line-height: 17px;
        margin-left: 15px;
        margin-top: 15px;
    }
    .topSlider .title{
        font-size: 22px;
        line-height: 26px;
    }
    .topSlider span{
        line-height: 17px;
    }
    .products h2 {
        font-size: 21px;
    }
}