@font-face {
    font-family: "Lato";
    src: local("Scriptorama"), /* проверяем наличие шрифта в ОС пользователя */
    url(../fonts/Lato-Regular.ttf); /* если шрифт не установлен, тогда загружаем его по указанному пути */
}

@font-face {
    font-family: "LatoRegular";
    src: url("../fonts/LatoRegular/LatoRegular.eot");
    src: url("../fonts/LatoRegular/LatoRegular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/LatoRegular/LatoRegular.woff") format("woff"),
    url("../fonts/LatoRegular/LatoRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LatoBold";
    src: url("../fonts/LatoBold/LatoBold.eot");
    src: url("../fonts/LatoBold/LatoBold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/LatoBold/LatoBold.woff") format("woff"),
    url("../fonts/LatoBold/LatoBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LatoItalic";
    src: url("../fonts/LatoItalic/LatoItalic.eot");
    src: url("../fonts/LatoItalic/LatoItalic.eot?#iefix")format("embedded-opentype"),
    url("../fonts/LatoItalic/LatoItalic.woff") format("woff"),
    url("../fonts/LatoItalic/LatoItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LatoLight";
    src: url("../fonts/LatoLight/LatoLight.eot");
    src: url("../fonts/LatoLight/LatoLight.eot?#iefix")format("embedded-opentype"),
    url("../fonts/LatoLight/LatoLight.woff") format("woff"),
    url("../fonts/LatoLight/LatoLight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

/*Общие стили*/
html{
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body{
    color: #000;
    font-family: Lato;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
}

header{
    padding: 0;
}

h1, .h1{
    text-transform: uppercase;
    font-size: 50px;
    line-height: 88px;
}

h2, .h2{
    font-size: 40px;
    margin: 4px 0;
}

h3, .h3 {
    font-size: 43px;
    line-height: 60px;
    margin: 2px 0 -2px;
}

h4, .h4{
    font-size: 30px;
    line-height: 1.3;
    margin: 30px 0;
    font-family: LatoBold;
}

.header-server{
    font-size: 24px;
    margin: 20px 0;
    text-transform: none;
}

p{
    margin: 0;
}

a, a:hover, a:visited{
    color: #000;
    text-decoration: none;
}

.disabled{
    color: #cdcdcd;
}

.inline{
    display: inline-block;
}

.red-stripe{
    background-color: #cb2933;
    padding: 30px 0;
    text-align: center;
    margin: -1px 0;
    position: relative;
    color: #fff;
    font-family: LatoBold;
    line-height: 1;
    box-sizing: border-box;
}

.button{
    background: transparent;
    border: 3px solid #cb2933;
    padding: 15px 50px;
    text-align: center;
    border-radius: 7px;
    line-height: 1;
}

.button:hover{
    background: #cb2933;
    color: #fff;
}

@-moz-keyframes cycle {
    35% {transform: rotate(0) translate(0, 0);}
    40% {transform: rotate(5deg) translate(0, -2px);}
    45% {transform: rotate(-3deg) translate(0, -2px);}
    50% {transform: rotate(5deg) translate(0, -2px);}
    55% {transform: rotate(-3deg) translate(0, -2px);}
    60% {transform: rotate(5deg) translate(0, -2px);}
    65% {transform: rotate(-3deg) translate(0, -2px);}
    70% {transform: rotate(0) translate(0, 0);}
}

@-webkit-keyframes cycle {
    35% {transform: rotate(0) translate(0, 0);}
    40% {transform: rotate(5deg) translate(0, -2px);}
    45% {transform: rotate(-3deg) translate(0, -2px);}
    50% {transform: rotate(5deg) translate(0, -2px);}
    55% {transform: rotate(-3deg) translate(0, -2px);}
    60% {transform: rotate(5deg) translate(0, -2px);}
    65% {transform: rotate(-3deg) translate(0, -2px);}
    70% {transform: rotate(0) translate(0, 0);}
}

.button-1{
    /*background: url(/img/button-1.png) no-repeat;
    background-size: 100%;*/
    background: #cb2933;
    border: 2px solid #cb2933;
    width: 300px;
    height: 62px;
    position: relative;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: top;
    text-align: center;
    line-height: 62px;
    color: #fff !important;    
    -moz-animation: cycle 4s linear infinite;            
    -webkit-animation: cycle 4s linear infinite;
}

.button-2{
    /*background: url(/img/button-2.png);
    background-size: 100%;*/
    background: transparent;
    border: 2px solid #cb2933;
    color: #000;
    width: 200px;
    height: 62px;
    position: relative;
    display: inline-block;
    margin: 0;
    vertical-align: top;
    text-align: center;
    line-height: 62px;
}

.button-2:hover{
    color: #000;
}

.buttons-container{
    display: flex;
}

/*header*/
.logo{
    vertical-align: middle;
    margin-bottom: 0;
    width: 217px;
    margin-top: -20px;
}

.navbar{
    /*position: absolute;*/
    width: 100%;
    top: 0;
    margin: 0;
    background: transparent;
    color: #000;
    padding: 30px 0 10px;
    z-index: 9;
}

.navbar-brand{
    display: inline-block;
    width: 350px;
    padding: 0;
}

.login-button{
    width: 130px;
    height: 50px;
    color: #fff;
    border-radius: 0;
    vertical-align: middle;
    border: 0;
    background: #cb2933;
    font-size: 20px;
    line-height: 1;
}

.login{
    width: 130px;
    vertical-align: middle;
    float: right;
    padding: 10px 0 0;
}

.contacts{
    vertical-align: bottom;
    font-family: "LatoRegular";
    font-size: 24px;
    margin: 0 40px;
    /* float: right; */
    text-transform: none;
    padding-top: 13px;
    display: flex;
}

.header-social{
    padding-right: 20px;
}

.header-social .wa_contacts{
    display: inline-block;
    vertical-align: bottom;
    padding-top: 8px;
}

.contacts .number{
    line-height: 1.1;
    font-family: "LatoBold";
    font-size: 31px;
}

.contacts .little-number{
    font-size: 19px;
    line-height: 19px;
    width: 100%;
}

.contacts .email{
    font-size: 18px;
    line-height: 19px;
    width: 100%;
    font-family: "LatoBold";
    letter-spacing: .05em;
}

.block-online{
    padding: 20px 0 40px;
}

.block-online p{
    text-transform: none;
}

.block-online h1{
    font-size: 1.5em;
}

@supports (-ms-ime-align:auto) {
    .navbar{
        height: 50px;
    }
}

/*blocks*/
.promo-icon{
    vertical-align: middle;
    margin: 0 0 5px 10px;
}

.background-1{
    height: 100vh;
    width: 100%;
    background: #eee;
    /*background: #eee url('../img/background.jpg') bottom right no-repeat;
    background-size: 50%;*/
    display: table;
    position: relative;
}
.background-1 h1{
    line-height: 1.2em;
}

.background-1-img{
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: calc(100% - 110px);
    max-width: 50%;
    z-index: 0;
}

.first-text{
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    color: #000;
    font-family: LatoBold;
}

.info-blocks{
    text-align: left;
    color: #000;
}

.info-block{
    width: 50%;
    height: 400px;
    display: inline-block;
    padding: 35px 0 0;
    margin: 0;
    vertical-align: top;
    font-size: 19px;
    overflow: hidden;
    font-family: LatoBold;
}
.info-block .img{
    margin-top: 75px;
}

.block-1{
    background: #eee url('../img/1-bg.png') right no-repeat;
    background-size: auto 100%;
}

.block-2{
    background: #fff url('../img/2-bg.png') left no-repeat;
    background-size: auto 100%;
}

.block-3{
    background: url('../img/3-bg.png') right no-repeat;
    background-size: auto 100%;
}

.block-4{
    background: #eee url('../img/4-bg.png') left no-repeat;
    background-size: auto 100%;
}

.block-5{
    background: #eee url('../img/5-bg.png') right no-repeat;
    background-size: auto 100%;
}

.block-6{
    background: url('../img/6-bg.png') left no-repeat;
    background-size: auto 100%;
}

.block-7{
    background: url('../img/7-bg.png') right no-repeat;
    background-size: auto 100%;
}

.block-8{
    background: #eee url('../img/8-bg.png') left no-repeat;
    background-size: auto 100%;
}


.info-header{
    margin: 20px 0;
    height: 75px;
    display: table;
    width: 100%;
}

.info-header .h4{
    vertical-align: middle;
    margin: auto;
    display: table-cell;
}

.download{
    text-align: center;
    padding: 40px 0;
}

.download .h2{
    margin: 0 0 30px;
}

.tarif{
    background: #eee;
    padding: 0 0 80px;
}

.tarif-item{
    height: 870px;
    border-radius: 9px;
    box-shadow: 0 2px 6px 0 rgba(25, 25, 25, 0.23);
    padding: 30px 50px;
    box-sizing: border-box;
    margin: 80px 0 0;
    text-align: center;
    background: #fff;
}

.tarif-item .h4{
    margin: 0;
    padding: 0 0 30px;
    border-bottom: 2px solid #cb2933;
}

.tarif-item .h2{
    margin: 40px 0;
    text-transform: none;
}

.tarif-item ul{
    padding: 20px 0 0;
    list-style: none;
}

.tarif-item span{
    text-transform: none;
    font-size: 20px;
}

.tarif-item li {
    text-align: left;
    text-transform: none;
    font-size: 19px;
    padding: 3px 0 12px 45px;
    margin: 0;
}

li.checked{
    background: url(../img/icon/check.png) top left no-repeat;
}

li.not-checked{
    background: url(../img/icon/no-check.png) top left no-repeat;
}

.group {
    position: relative;
    margin: 30px 0;
}

.input {
    font-size: 23px;
    padding: 10px 0;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
}

input:focus {
    outline: none;
}

.label-transform {
    color: #999;
    font-size: 23px;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 15px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    text-transform: none;
}

.input:focus ~ .label-transform, .input:valid ~ .label-transform{
    top: -15px;
    font-size: 14px;
    color: #cb2933;
}

.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before, .bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #cb2933;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%;
}

#loader_wrapper{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200000;
    position: absolute;
    top: 0;
}
#loader {
    border: 16px solid #fff;
    border-radius: 50%;
    border-top: 16px solid grey;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 10% auto;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.alert-danger{
    margin-top: 37px;
}

.form .button {
    float: right;
}

#contactForm{
    margin: 50px 0;
}

.form label{
    text-transform: none;
}

/*кнопки*/
.form-item {
    position: relative;
}
.form-item input[type=radio],
.form-item input[type=checkbox] {
    position: absolute;
    visibility: hidden;
}
.form-item label {
    display: inline-block;
    padding: 0 5px;
    margin: 8px 0;
    vertical-align: middle;
    width: calc(100% - 30px);
}
.radio-check {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    border: 2px solid #cb2933;
    border-radius: 3px;
    background: #fff;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    width: 25px;
    height: 25px;
}
.radio-check.checked{
    background: url('/img/icon/checkmark.png') center center no-repeat;
}

.clients{
    text-align: center;
    padding:  0 0 50px;
}

.clients .h4{
    margin: 0;
}
.clients a{
    font-family: LatoBold;
    margin: 15px 0 20px;
    color: #000;
}

.client-logo {
    height: 160px;
    margin: 50px 0 30px;
}
.client-logo-img {
    opacity: 0.6;
}
.client-logo-img:hover {
    opacity: 1;
}

.team{
    text-align: center;
}

.team .h4{
    text-transform: none;
    margin: 20px 0;
}

.team-img{
    height: 180px;
    margin: 50px 0 0;
}

.about{

    padding-top: 125px;
}
.about_name{
    font-size: 31px;
}
.about_info{
    font-size: 22px;
    text-transform: none;
    margin-bottom: 50px;
    display: block;
}
.about_info .position{
    margin-bottom: 0.7em;
    text-transform: uppercase;
}
.about_info .fa-vk, .about_info .fa-facebook{
    font-size: 1.6em;
    margin: 10px;
}
.background-4{
    background: #fff url('../img/background4.png') bottom center no-repeat;
    background-clip: padding-box;
    background-size: auto 600px;
    text-align: center;
    padding: 0 0 180px;
}
.googleplay, .appstore{
    height: 84px;
}
.user-photo{
    border-radius: 50%;
    width: 155px;
    height: 155px;
    /*background: url('../img/review-man.png');
    background-size: 100%;
    box-shadow: 5px 5px 9px -3px #262626;*/
    position: absolute;
    top: 0;
    overflow: hidden;
    box-shadow: 5px 5px 10px -1px rgba(0,0,0,.4);
}
.user-photo img{
    width: 165px;
    height: 165px;
}
.review{
    margin-top: 103px;
}
.review:nth-child(odd){ /*1,3,5*/
    padding-right: 35px;
}
.review:nth-child(even){/*2,4,6*/
    padding-left: 35px;
}
.response{
    margin-top: 76px;
    margin-left: 67px;
    font-size: 18px;
    text-transform: none;
    font-family: LatoRegular;
    line-height: 1.5;
    padding: 19px 24px;
    text-align: left;
}
.response {
    background: #fff;
    border: 2px solid #cb2933;
}
.response .name{
    margin-left: 50px;
    text-align: right;
    font-family: LatoBold;
    font-size: 20.5px;
    line-height: 1.1;
}
.response .position{
    margin-left: 50px;
    text-align: right;
    font-family: LatoLight;
    font-size: 16px;
    margin-bottom: 20px;
}
footer .h4 {
    font-size: 26px;
}
footer{
    background-color: #eee;
    padding: 40px 0;
    font-size: 26px;
    text-align: center;
}
footer .social{
    display: inline-block;
    width: 68px;
    height: 68px;
    border: 3px solid #000;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 30px;
}
footer .vk{
    background: url('../img/social.png') -9% no-repeat;
    background-size: 220px;
}
footer .inst{
    background: url('../img/social.png') 53% no-repeat;
    background-size: 220px;
}
footer .fb{
    background: url('../img/social.png') 114% no-repeat;
    background-size: 220px;
}
footer .copyright{
    font-size: 15px;
    font-family: LatoRegular;
    text-transform: none;
    text-align: center;
    margin-top: 42px;
}
footer .phone{
    font-size: 26px;
    line-height: 50px;
    margin-top: 19px;
    text-align: center;
}
footer .googleplay, footer .appstore{
    margin: 0 3px 0;
    height: 50px;
}

footer .banks img{
    vertical-align: middle;
}

.video{
    width: 100%;
    background: #000;
    margin: 15px 0;
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow:hidden;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

/*carousel screens*/
.screens-img{
    width: 100%;
}
#carousel-screens{
    margin: 80px 0 110px;
}
.carousel-indicators {
    bottom: -70px;
}
.carousel-indicators li{
    border: 1px solid #cb2933;
}
.carousel-indicators .active{
    background-color: #cb2933;
}
.carousel-control.right,
.carousel-control.left{
    background-image: none;
    color: #cb2933;
}
.carousel-control.right:hover{
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control.left:hover {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}


@media (min-width: 992px) and (max-width: 1199px){
    h4, .h4 {
        font-size: 25px;
    }

    .block-1{
        background-position: left;
        background-size: auto 100%;
    }

    .block-2{
        background-position: right;
        background-size: auto 100%;
    }

    .block-3{
        background-position: right;
        background-size: auto 100%;
    }

    .block-4{
        background-position: left;
        background-size: auto 100%;
    }

    .block-5{
        background-position: right;
        background-size: auto 100%;
    }

    .block-6{
        background-position: right;
        background-size: auto 100%;
    }

    .button-1{
        background: #cb2933;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }
    .button-2{
        background: transparent;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }

    .info-block {
        font-size: 15px;
    }

    .tarif-item {
        padding: 25px 15px 15px;
        height: 790px;
    }

    .tarif-item .h4 {
        padding: 0 0 10px;
    }

    .tarif-item .h2 {
        margin: 24px 0;
    }

    .tarif-item li {
        padding: 3px 0 12px 38px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    h1, .h1 {
        font-size: 38px;
    }
    h2, .h2 {
        font-size: 28px;
    }
    h4, .h4 {
        font-size: 24px;
    }
    .button-1{
        background: #cb2933;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }
    .button-2{
        background: transparent;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }
    .navbar-brand {
        width: 210px;
        height: auto;
    }
    .logo {
        width: 100%;
    }
    .info-block {
        padding: 25px 0 0;
        font-size: 15px;
    }
    .block-1 {
        background-position: left;
    }
    .block-2 {
        background-position: right;
    }
    .block-6 {
        background-position: right;
    }
    .tarif-item{
        height: auto;
    }
    .response {
        margin: 0 15px;
        background: #fff;
        border: 2px solid #cb2933;
    }
    .review:nth-child(odd),
    .review:nth-child(even){
        padding: 0;
        margin: 30px 0 0;
    }
    .user-photo{
        display: none;
    }
    footer .social {
        display: inline-block;
        width: 34px;
        height: 34px;
        background-size: 120px;
        margin: 0;
    }
    footer .vk{
        background-position-x: -4%;
    }
    footer .fb{
        background-position-x: 110%;
    }
    footer .googleplay, footer .appstore {
        margin: 0 0 10px;
        height: 50px;
    }
    footer .phone {
        margin-top: -20px;
    }
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 30px;
        margin: 30px 0;
    }
    h2, .h2 {
        font-size: 23px;
    }
    h4, .h4 {
        font-size: 24px;
    }
    .navbar {
        position: relative;
        padding: 10px 0 0;
        background: #eee;
    }
    .navbar-brand {
        display: block;
        width: 50%;
        height: auto;
    }
    .logo {
        width: 100%;
        max-width: 183px;
        margin-top: 0;
    }

    .contacts {
        margin: 10px 0;
        float: none;
        width: 100%;
        text-align: left;
        display: inline-block;
    }

    .login{
        width: 50%;
        float: none;
        display: inline-block;
        padding: 0;
    }
    .login-button {
        width: 100px;
        height: 42px;
        font-size: 18px;
        margin: 21px 0 0 auto;
        float: right;
    }
    .contacts .number {
        font-size: 23px;
    }
    .button-1{
        background: #cb2933;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }
    .button-2{
        background: transparent;
        border: 2px solid #cb2933;
        height: 56px;
        margin: 10px 0 0;
        line-height: 56px;
    }

    .background-1{
        background: #eee;
        height: calc(100vh - 125px);
    }
    .first-text {
        width: 100vw;
        text-align: center;
    }
    .info-block {
        width: 100%;
        height: auto;
        padding: 20px 0;
        font-size: 15px;
    }
    .info-header {
        height: auto;
        display: block;
    }
    .info-header .h4 {
        margin: 10px 0;
        display: unset;
    }
    .info-block img{
        height: 80px;
    }
    .block-1,
    .block-3,
    .block-5,
    .block-7{
        background: #fff;
    }
    .block-2,
    .block-4,
    .block-6,
    .block-8{
        background: #eee;
    }

    .tarif {
        padding: 0 0 30px;
    }

    .tarif-item {
        padding: 25px 15px 15px;
        height: auto;
        margin: 15px 0;
    }

    .tarif-item .h4 {
        padding: 0 0 20px;
    }

    .tarif-item .h2 {
        margin: 24px 0;
    }

    .tarif-item li {
        padding: 3px 0 12px 38px;
    }
    .googleplay, .appstore {
        height: 60px;
    }
    .download .h2{
        font-size: 24px;
        font-family: LatoBold;
    }
    .form .button {
        float: none;
        margin: 0 auto;
        display: block;
    }
    .background-4 {
        padding: 0 0 50px;
    }
    .response {
        margin: 0 15px;
        background: #fff;
        border: 2px solid #cb2933;
    }
    .review:nth-child(odd),
    .review:nth-child(even){
        padding: 0;
        margin: 30px 0 0;
    }
    .response .name,
    .response .position{
        margin-left: 0;
    }
    .user-photo{
        display: none;
    }
    footer{
        text-align: center;
        padding: 0;
    }
    footer .googleplay, footer .appstore {
        margin: 0;
        height: 50px;
    }
    footer .social {
        display: inline-block;
        width: 34px;
        height: 34px;
        background-size: 120px;
        margin: 0;
    }
    footer .vk{
        background-position-x: -4%;
    }
    footer .fb{
        background-position-x: 110%;
    }
    footer .phone {
        font-size: 21px;
        line-height: 1.4;
        margin-top: 0;
    }
    footer .copyright {
        font-size: 14px;
        margin-top: 30px;
    }
}

.block-online h1,
.block-online .h1 {
    text-transform: none;
    font-size: 30px;
    line-height: 1.2;
}
.block-online p{
    margin: 0 0 10px;
}
.online-img{
    width: 80%;
    height: auto;
    margin: 0 auto 15px;
}
@media (min-width: 1200px){
    .container {
    width: 970px;
}
}
