/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@font-face {
    font-family: SF; /* Гарнитура шрифта */
  
    src: local(SF), url(fonts/SF-UI-Text-Regular.ttf); /* Для остальных браузеров */
   }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    text-decoration: none;
    cursor: pointer;
    color: black;
}

/*------- Base Class ------*/
.container{
    padding: 0 15px;
    margin:0 auto;
    overflow: hidden;
}
.container-fluid{
    padding: 0;
    margin:0 auto;
    overflow: hidden;
}
.row{
    margin:0 15px;
    overflow: hidden;
}
.row-fluid{
    margin:0;
    overflow: hidden;
}
.column{
    width: 100%;
    padding: 0;
    float: left;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.col-12 {
  width: 8.33333333%;
}
.col-11 {
  width: 9.09090909%;
}
.col-10 {
  width: 10%;
}
.col-9 {
  width: 11.1111111%;
}
.col-8 {
  width: 12.5%;
}
.col-7 {
  width: 14.2857143%;
}
.col-6 {
  width: 16.6666667%;
}
.col-5 {
  width: 20%;
}
.col-4 {
  width: 25%;
}
.col-3 {
  width: 33.33333333%;
}
.col-2 {
  width: 50%;
}
.col-1-2{
    width: 75%;
}
.col-1 {
  width: 100%;
}

.col-1,
.col-1-2,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    float: left;
}

.bold{
    font-weight: bold;
}
.block{
    display: block;
}
.clearfix:after{
    content: "";
    display: table;
    clear: both;
}
.margin-a{
    margin: 0 auto;
}
.margin-l-r{
    margin-left: 2%;
    margin-right: 2%;
}
.line{
    border-bottom: 1px solid #5c5a5a;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.right{
    display: block;
    float: right;
}
.center{
    display: block;
    float: center;
}
.left{
    display: block;
    float: left;
}
.ov-hidden{
    overflow: hidden;
}
.white{
    color: white;
}

/*------- End Base Class ------*/

body{
    background: #ffffff;
    font-size: 16px;
    font-family: Tahoma, sans-serif;
    line-height: 1;
}

.wrap{
    position: relative;
}
.shaddow{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(51, 51, 51, 0.6);
    z-index: 20;
    display: none;
}
.wraper-form{
    width: 378px;
    height: 316px;
    position: absolute;
    left: 37%;
    top: 8%;
    background: #ffffff;
    border: 1px solid #e69c0e;
    border-radius: 10px;
}
.close-1, .close-2{
    width: 30px;
    height: 30px;
    top: -15px;
    right: -15px;
    position: absolute;
    border-radius: 50%;
}
.close-1{
    background-image: url(../images/close_act.png);
    background-repeat: no-repeat;
}
.close-2{
    background-image: url(../images/close_ne-act.png);
    background-repeat: no-repeat;
}
.close-2:hover{
    background: transparent;
}
.lang{
		margin-top: 40px;
	}	
.your-name, .your-e-mail,
.your-recall{
    margin: 0 auto;
    width: 90%;
    height: 28px;
    margin-top: 15px;
    font-size: 0.9em;
    font-family:  sans-serif;
    font-weight: bold;
    border: 1px solid #bebebe;
    border-radius: 4px;
    position: relative;
    color: #bebebe;
    z-index:10;
}
.your-name{
    margin-top: 25px;
}
.your-recall{
    height: 100px;
}
.your-name span,
.your-e-mail span,
.your-recall span{
    width: 90%;
    margin-top: 6px;
    margin-left: 2%;
    position: absolute;
    z-index: 2;
}
.your-name:hover,
.your-e-mail:hover,
.your-recall:hover{
    border: 1px solid #333;
    color: #333;
}
input[type="text"],
textarea{
    width: 98%;
    height: 93%;
    top: 0px;
    padding-left: 2%;
    border: none;
    border-radius: 4px;
    position: absolute;
    z-index: 3;
    background: transparent;
}
textarea{
    width: 97%;
    height: 96%;
}
.wraper-form button{
    margin: 0 auto;
    padding: 5px 0 10px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
}

/*----------    Header   ---------*/

header{
    padding: 10px 0;
    background-image: url(../images/bg-top.jpg);
    background-repeat: no-repeat;
    background-position: -300px 0px;
}
.wrap-headcontent{
    width: 950px;
    margin: 0 auto;
}
.logo{
    margin-top: 10px;
}
.wrap-phone{
    padding-top: 4px;
}
.phone{
    width: 175px;
    margin: 0 auto;
}
.phone-icon{
    width: 30px;
    height: 30px;
}
.phone-icon-1{
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -63px -79px;
}
.phone-icon-2{
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -17px -79px;
}
.phone-icon-3{
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -109px -79px;
}
.phone span{
    margin: 3px 0 0 0;
    font-size: 1.1em;
    line-height: 1.2em;
}
.number span{
    font-size: 1.55em;
    font-family: Tahoma, sans-serif;
}
.button{
    width: 220px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #0070AC;
    border: none;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}
.button:hover{
    background: #ed0909;
}
.icon-car{
    width: 35px;
    height: 25px;
    margin-left: 4px;
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -195px -79px;
}
.button span{
    font-size: 1.2em;
    font-family: Tahoma , sans-serif;
    line-height: 1.2em;
}
.button-1 span{
    margin-right: 15px;
}
.icon-file{
    width: 28px;
    height: 25px;
    margin-left: 7px;
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -153px -80px;
}
.button-2 span{
    margin-right: 40px;
}

/*----------   End Header   ---------*/

/*-------------   Slider    ------------*/

.slider{
    height: 300px;
    position: relative;
}
.wrap-slider-img{
    width: 100%;
    height: 300px;
    position: absolute;
    background-image: url(../images/slide4.jpg);
    background-repeat: no-repeat;
    background-position: -350px 0;
}
.wrap-slider-img p{
    margin-top: 30px;
    margin-right: 10%;
    text-align: justify;
    font-size: 3em;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
}
.wrap-slider-img span{
    font-size: 0.86em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.wrap-slider-img-2{
    width: 100%;
    height: 300px;
    position: absolute;
    background-image: url(../images/slide1.jpg);
    background-repeat: no-repeat;
    background-position: -350px 0;
    display: none;
}
.wrap-slider-img-2 p{
    margin-top: 30px;
    margin-right: 10%;
    text-align: justify;
    font-size: 3em;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
}
.wrap-slider-img-2 span{
    font-size: 0.86em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.icon-left{
    margin: 120px 0 0 50px;
    cursor: pointer;
}
.icon-ie-left, .icon-ie-right{
    font-size: 4em;
    position: relative;
    visibility: hidden;
}
.fa-chevron-circle-left{
    color: rgba(252, 252, 252, 0.47);
}
.fa-chevron-circle-left:hover{
    color: rgba(252, 252, 252, 0.73);
}
.icon-right{
    margin: 120px 50px 0 0;
    cursor: pointer;
}
.fa-chevron-circle-right{
    color: rgba(252, 252, 252, 0.58);
}
.fa-chevron-circle-right:hover{
    color: rgba(252, 252, 252, 0.83);
}
.wrap-icon{
    width: 310px;
    margin: 240px -50px 0 0;
    position: relative;
}
.appstore{
    width: 150px;
    height: 45px;
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -18px -17px;
    cursor: pointer;
}
.googleplay{
    width: 150px;
    height: 45px;
    margin-left: 10px;
    background-image: url(../images/domino_sprite.png);
    background-repeat: no-repeat;
    background-position: -185px -17px;
    cursor: pointer;
}

/*-------------  End Slider    ------------*/

/*-------------   Select-car    ------------*/

.select-car{
    padding-top: 40px;
}
h1{
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
	
}
h2{
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 1.2em;
    color: #0069A6;
}
.wrap-car{
    width: 950px;
}
.car-1, .car-2, .car-3, .car-4{
    position: relative;
}
.car-1-1{
    width: 207px;
    height: 182px;
    background: url(../images/domino_cars.png);
    background-repeat: no-repeat;
    background-position: -17px -18px;
}
.car-2-2{
    width: 207px;
    height: 182px;
    background: url(../images/domino_cars.png);
    background-repeat: no-repeat;
    background-position: -242px -18px;
}
.car-3-3{
    width: 207px;
    height: 182px;
    background: url(../images/domino_cars.png);
    background-repeat: no-repeat;
    background-position: -467px -18px;
}
.car-4-4{
    width: 207px;
    height: 182px;
    background: url(../images/domino_cars.png);
    background-repeat: no-repeat;
    background-position: -693px -18px;
}
.car-1-1:hover{
     background-position: -17px -218px;
}
.car-2-2:hover{
     background-position: -242px -218px;
}
.car-3-3:hover{
     background-position: -467px -218px;
}
.car-4-4:hover{
     background-position: -693px -218px;
}
.wrap-car h2{
    width: 100%;
    position: absolute;
}
.wrap-car p{
    margin-top: 100px;
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2em;
    color: #4F5B6A;
}

/*-------------  End Select-car    ------------*/

/*-------------   Call    ------------*/

.wrap-call{
    width: 950px;
    margin: 0 auto;
}
.shahmatki{
    width: 983px;
    max-width: 100%;
    height: 8px;
}
.call{
    margin: 20px 0 20px 140px;
    font-family: 'Roboto', sans-serif;
    color: #4F5B6A;
}
h3{
    font-size: 1.1em;
    line-height: 1.2em;
}
.call p{
    font-size: 1.2em;
    line-height: 1.2em;
}
.call .button{
    width: 90%;
    text-align: center;
    padding: 5px 0 6px;
}
.girl{
    width: 132px;
    height: 196px;
    margin-top: 25px;
    margin-left: 80px;
}

/*-------------  End Call    ------------*/

.wrap-for-middlebutton .button{
    width: 300px;
    margin: 20px auto;
    padding: 5px 0 6px;
    text-align: center;
}

.content-wrapper p {
    font-size: 1.0em;
    line-height: 1.0em;
    color: #4F5B6A;
    text-align: justify;
    font-weight: normal !important;
    padding: 5px 40px;
    text-indent: 30px;
}

/*-------------   Form    ------------*/

.wrap-form h2, .wrap-form p{
    font-family: Arial, sans-serif;
    font-weight: bold;
}
.wrap-form h2{
    font-size: 1.3em;
}
.yellow-line{
    width: 950px;
    height: 1px;
    margin: 0 auto;
    background: #fff200;
}
.form-wrapper{
    padding-bottom: 50px;
    background: url(../images/bg3.jpg);
    background-repeat: no-repeat;
    background-size:125% 115%;
    background-position: -155px 0px;
}
.form-wrapper-2{
    width: 810px;
    margin: 40px auto 0;
    background: #ffffff;
}
#WidgetEvosFrame{
	 display: none;
}

/*-------------  End Form    ------------*/

/*-------------   Footer    ------------*/

footer{
    padding: 10px 0 10px;
    background-image: url(../images/bg-top.jpg);
    background-repeat: no-repeat;
    background-position: -300px 0px;
}
.wrap-footer-content{
    width: 950px;
    margin: 0 auto;
}
.wrap-vacancies .button-2{
    margin-top: 35px;
}
.wrap-recall{
    position: relative;
}
.recall{
    width: 160px;
    height: 95px;
    margin-left: 15%;
    background-image: url(../images/otziv_ne-act.png);
    background-repeat: no-repeat;
    border-top: 1px solid rgba(51, 51, 51, 0);
    position: relative;
    z-index: 2;
}
.recall:hover{
    background: transparent;
}
.recall-2{
    width: 160px;
    height: 95px;
    top: 1px;
    left: 15%;
    background-image: url(../images/otziv_act.png);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
}
.recall a{
    width: 160px;
    height: 95px;
}
.recall span{
    margin-top: 10px;
    font-size: 1.2em;
    font-family: Tahoma , sans-serif;
}

/*-------------  End Footer    ------------*/

/*-------- FOR Dispetcher.html ------*/

.wrap-disp{
    position: relative;
}
.wrap-contact a,
.wrap-phone a{
    color: black;
}
.wrap-disp h1{
    margin: 25px 0 30px;
}
.wrap-disp-content{
    width: 1100px;
    margin: 0 auto;
}
.disp-button li{
    float: left;
}
.disp-button .button{
    width: 100%;
}
.color-red{
    background: #ed0909;
}
.disp-but-1{
    width: 20%;
    margin-right: 1%;
}
.disp-but-1 img,
.disp-but-2 img,
.disp-but-3 img{
    margin: 1px 0 0 5px ;
}
.disp-but-1 span,
.disp-but-2 span{
    margin-right: 2%;
}
.disp-but-2{
    width: 25%;
    margin-right: 1%;
}
.disp-but-3{
    width: 15%;
    margin-right: 1%;
}
.disp-but-3 span{
    margin-right: 20%;
}
.disp-but-4{
    width: 26%;
}
.disp-but-4-img{
    margin: 8px 0 5px 6px;
}
.disp-but-4 span{
    margin-left: 20%;
}
.wrap-position-center{
    position: relative;
}
.disp-manager{
    width: 207px;
    height: 251px;
    position: absolute;
    top: 140px;
    right: 150px;
    background-image: url(../images/image321.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -50px 0;
    border-radius: 25px;
    border: 1px solid #7f7f7f;
}
.disp-operator{
    width: 207px;
    height: 251px;
    position: absolute;
    top: 140px;
    right: 150px;
    background-image: url(../images/303171.jpg);
    background-repeat: no-repeat;
    background-position: -160px 0;
    background-size: cover;
    border-radius: 25px;
    border: 1px solid #7f7f7f;
}
.disp-driver{
    width: 207px;
    height: 251px;
    position: absolute;
    top: 140px;
    right: 150px;
    background-image: url(../images/none.jpg);
    background-repeat: no-repeat;
    background-position: -60px 0;
    background-size: cover;
    border-radius: 25px;
    border: 1px solid #7f7f7f;
}
.disp-girl{
    width: 207px;
    height: 251px;
    position: absolute;
    top: 161px;
    right: 150px;
    background-image: url(../images/3v0v9b0z9s.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
    border: 1px solid #7f7f7f;
}
.disp-p-1{
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
}
.disp-h2-1{
    font-size: 1.3em;
}
.disp-p-2{
    margin-left: 10%;
    margin-right:2% ;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3em;
    font-size: 1.1em;
}
.disp-ul-2{
    margin-left: 10%;
    line-height: 1.2em;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
	text-align: justify;
}
.disp-ul-style{
    margin-left: 11%;
    margin-right:11% ;
    list-style:disc ;
	text-align: justify;
}
.disp-p-3{
    font-size: 1.1em;
}
.last-p-1{
    font-size: 1em;
}
.last-p-2{
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

/*-------- End FOR Dispetcher.html ------*/

/*------- Base Class ------*/

.bottom-3{
    margin-bottom: 3px;
}
.bottom-4{
    margin-bottom: 4px;
}
.bottom-5{
    margin-bottom: 5px;
}
.bottom-7{
    margin-bottom: 7px;
}
.bottom-10{
    margin-bottom: 10px;
}
.bottom-18{
    margin-bottom: 18px;
}
.bottom-15{
    margin-bottom: 15px;
}
.bottom-20{
    margin-bottom: 20px;
}
.bottom-25{
    margin-bottom: 25px;
}
.bottom-30{
    margin-bottom: 30px;
}
.bottom-40{
    margin-bottom: 40px;
}
.bottom-50{
    margin-bottom: 50px;
}
.bottom-60{
    margin-bottom: 60px;
}
.bottom-80{
    margin-bottom: 80px;
}

.blue{
    color: #0044E2;
	text-decoration: underline;
}
@media (max-width: 767px) {
.lang{
		margin-top: 0px;
	}	
  .wrap-slider-img{
    background-position: -485px 0;
    }
  .bottom-80{
    margin-bottom: -80px;
}
.form-wrapper {
    padding-bottom: 0px;
	margin-bottom: -90px;
    
}
.content-wrapper {
	margin-top: -90px;
}
.wrap-icon {
	display: none;
}
.title-section {
    display: none;
}
}
/*------- End Base Class ------*/

/*-------------   Min @Media    ------------*/

@media screen and (min-width:1300px){
    header{
    background-position: -200px 0px;
    }
    .wrap-headcontent{
    width: 1100px;
    }
    .wrap-slider-img-2{
    background-position: -250px 0;
    }
    .wrap-car{
    width: 1100px;
    }
    .wrap-call{
    width: 1100px;
    }
    .shahmatki{
    width: 1100px;
    }
    .call{
    margin: 30px 0 20px 220px;
    }
    .girl{
    margin-left: 160px;
    }
    .yellow-line{
    width: 1100px;
    }
    .form-wrapper{
    background-size:120% 115%;
    background-position: -140px 0px;
    }
    footer{
    background-position: -200px 0px;
    }
    .wrap-footer-content{
    width: 1100px;
    }
    .wrap-position-center{
    width: 1100px;
    }
    .disp-girl, .general{
    right: 0px;
    }
    .disp-p-2{
    margin-left: 0%;
    margin-right: 0%;
}
    .disp-ul-2{
    margin-left: 0%;
    }
    .disp-ul-style{
    margin-left: 0%;
    margin-right: 0% ;
    }
}

@media screen and (min-width:1400px){
    .wrap-slider-img-2{
    background-position: -200px 0;
    }
    .wrap-slider-img p{
    margin-right: 12%;
    }
    .icon-left{
    margin: 120px 0 0 80px;
    }
    .icon-right{
    margin: 120px 80px 0 0;
    }
    .form-wrapper{
    background-size:115% 115%;
    background-position: -120px 0px;
    }
    footer{
    background-position: -100px 0px;
    }
}

@media screen and (min-width:1500px){
    header{
    background-position: -100px 0px;
    }
    .wrap-slider-img{
    background-position: -170px 0;
    }
    .wrap-slider-img-2{
    background-position: -140px 0;
    }
    .icon-left{
    margin: 120px 0 0 90px;
    }
    .icon-right{
    margin: 120px 90px 0 0;
    }
     .form-wrapper{
    background-size:105% 115%;
    background-position: -80px 0px;
    }
}

@media screen and (min-width:1600px){
    .wrap-slider-img-2{
    background-position: -120px 0;
    }
    .wrap-slider-img p{
    margin-right: 15%;
    }
    .icon-left{
    margin: 120px 0 0 100px;
    }
    .icon-right{
    margin: 120px 100px 0 0;
    }
    .form-wrapper{
    background-size:100% 110%;
    background-position: 0px 0px;
    }
    footer{
    background-position: 0px 0px;
    }
}

@media screen and (min-width:1700px){
    header{
    background-position: 0px 0px;
    }
    .wrap-slider-img{
    background-position: 0 0;
    }
    .wrap-slider-img-2{
    background-position: 0 0;
    }
    .wrap-slider-img p{
    margin-right: 18%;
    }
    .icon-left{
    margin: 120px 0 0 120px;
    }
    .icon-right{
    margin: 120px 120px 0 0;
    }
    .form-wrapper{
    background-size: cover;
    background-position: 0px 0px;
    }
}

@media screen and (min-width:1900px){
    header{
    background-size: 100% 100%;
    }
    .wrap-slider-img{
    background-size: 100% 100%;
    }
    .wrap-slider-img-2{
    background-size: 100% 100%;
    }
    footer{
    background-size: 100% 100%;
    }
}

/*-------------  End Min @Media    ------------*/

/*-------------   Max @Media    ------------*/

@media screen and (max-width:1250px){
    .general{
    right: 50px;
    }
}

@media screen and (max-width:1150px){
    .wrap-disp-content{
    width: 350px;
    margin-left: 13%;
    }
    .wrap-disp-content span{
    font-size: 1.2em;
    }
    .disp-but-1{
    width: 100%;
    margin-right: %;
    margin-bottom: 10px;
    }
    .disp-but-2{
    width: 100%;
    margin-right: %;
    margin-bottom: 10px;
    }
    .disp-but-3{
    width: 100%;
    margin-right: %;
    margin-bottom: 10px;
    }
    .disp-but-4{
    width: 100%;
    }
.disp-but-4 span{
    margin-right: 2%;
    }
    .general{
    height: 220px;
    top: 55px;
    right: 150px;
    }
    .content-wrapper p {
    padding: 5px 40px;
   }
}

@media screen and (max-width:1100px){
    .wraper-form{
    left: 34%;
   }
    .wrap-headcontent{
    width: 850px;
    }
    .slider{
    height: 250px;
    position: relative;
    }
.wrap-slider-img{
    height: 250px;
    background-size: cover;
    background-position: -300px 0;
    }
    .wrap-slider-img-2{
    height: 250px;
    background-size: cover;
    background-position: -200px 0;
    }
    .wrap-slider-img p{
    font-size: 2em;
    }
    .icon-left, .icon-right{
    margin-top: 100px;
    }
    .wrap-icon{
    margin: 190px -150px 0 0;
    }
    .form-wrapper{
    background-size:135% 115%;
    background-position: -155px 0px;
    }
    .content-wrapper p {
    padding: 5px 40px;
   }
}

@media screen and (max-width:1000px){
    .wrap-car{
    width: 750px;
    }
    .car-1, .car-2, .car-3, .car-4{
    width: 50%;
    margin-bottom: 30px;
    }
    .wrap-call{
    width: 100%;
    }
    .call{
    margin: 30px 0 20px 170px;
    }
    .form-wrapper{
    background-size:145% 115%;
    background-position: -175px 0px;
    }
    .wrap-footer-content{
    width: 800px;
    }
    .content-wrapper p {
    padding: 5px 40px;
   }
}

@media screen and (max-width:950px){
    .wrap-headcontent{
    width: 750px;
    }
    .wrap-slider-img-2{
    background-position: -300px 0;
    }
    .content-wrapper p {
    padding: 5px 20px;
   }
}

@media screen and (max-width:900px){
    .wraper-form{
    left: 30%;
   }
    .wrap-disp-content{
    width: 340px;
    margin-left: 3%;
    }
    .general{
    height: 220px;
    top: 55px;
    right: 50px;
    }
    .content-wrapper p {
    padding: 5px 30px;
   }
}

@media screen and (max-width:880px){
    footer{
    background-size: 100% 100%;
    background-position: 0px 0px;
    }
    .wrap-footer-content{
    width: 600px;
    }
    .wrap-vacancies{
    width: 100%;
    margin-bottom: 10px;
    }
    .wrap-vacancies .button-2{
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    }
    footer .wrap-phone,
    footer .wrap-recall{
    width: 50%;
    }
    .recall{
    margin: 0 auto;
    }
    .recall-2{
    left: 70px;
    }
    .content-wrapper p {
    padding: 5px 20px;
   }
}

@media screen and (max-width:850px){
    .wraper-form{
    left: 25%;
   }
    header{
    background-size: 100% 100%;
    background-position: 0px 0px;
    }
    .wrap-headcontent{
    width: 660px;
    }
    .wrap-logo{
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    }
    .wrap-phone{
    width: 50%;
    }
    .wrap-contact{
    width: 50%;
    text-align: center;
    }
    .wrap-contact .button{
    margin-left: auto;
    margin-right: auto;
    float: none;
    }
    .number{
    text-align: center;
    }
    .wrap-slider-img{
    background-position: -350px 0;
    }
    .wrap-slider-img-2{
    background-position: -330px 0;
    }
    .icon-left, .icon-right{
    display: none;
    }
    .wrap-icon{
    margin: 190px 20px 0 0;
    position: relative;
    }
    .wrap-car{
    width: 650px;
    }
    .call{
    margin: 30px 0 20px 120px;
    }
    .form-wrapper{
    background: #ffffff;
    }
    .form-wrapper-2 {
     width: 700px;
    }
    .content-wrapper p {
    padding: 5px 20px;
   }
}

@media screen and (max-width:800px){
    .wrap-slider-img{
    background-position: -380px 0;
    }
    .wrap-slider-img-2{
    background-position: -360px 0;
    }
    .form-wrapper-2 {
     width: 100%;/*------------------------------------------------------------------------------------------------660px------------------------*/
    }
    .content-wrapper p {
    padding: 5px 20px;
   }
   /*---------------------------------------------------------------добавлено------------------------------------------------------------------------*/
   .wrap-slider-img{
    background-position: -485px 0;
    }
  .bottom-80{
    margin-bottom: -80px;
}
.form-wrapper {
    padding-bottom: 0px;
	margin-bottom: -90px;
    
}
.content-wrapper {
	margin-top: -90px;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
}

@media screen and (max-width:750px){
    .wrap-headcontent{
    width: 550px;
    }
    .wrap-slider-img-2{
    background-position: -380px 0;
    }
    .wrap-car{
    width: 550px;
    }
    .call{
    margin: 30px 0 20px 50px;
    }
    .girl{
    margin-right: 60px;
    float: right;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:700px){
    .wraper-form{
    left: 20%;
   }
.form-wrapper-2{
    width: 100%;
    }
    #WidgetEvosFrame{
    width: 100%;
    }
    .call{
    width: 300px;
    margin: 30px 0 20px 10px;
    }
    .girl{
    margin-right: 30px;
    }
    .wrap-footer-content{
    width: 500px;
    }
    .recall-2{
    left: 45px;
    }
    .wrap-disp-content{
    width: 350px;
    margin: 0 auto;
    }
    .general{
    display: none;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:650px){
    .wrap-footer-content{
    width: 300px;
    }
    footer .wrap-phone,
    footer .wrap-recall{
    width: 100%;
    }
    footer .wrap-phone{
    margin-top: 10px;
    margin-bottom: 20px;
    }
    .recall-2{
    left: 70px;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:620px){
    .wrap-slider-img{
    background-position: -585px 0;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:600px){
    .wraper-form{
    top: 6%;
    left: 15%;
   }
    .wrap-headcontent{
    width: 100%;
    }
    .wrap-logo{
    margin-bottom: 5px;
    float: none;
    }
    .wrap-phone{
    width: 100%;
    margin-bottom: 15px;
    float: none;
    }
    .wrap-contact{
    width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
    float: none;
    }
    .wrap-car{
    width: 300px;
    }
    .car-1, .car-2, .car-3, .car-4{
    width: 100%;
    margin-bottom: 20px;
    }
    .call{
    width: 300px;
    margin: 30px 0 20px 10px;
    }
    .girl{
    margin:20px 0 0;
    float: right;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:500px){
    .wraper-form{
    top: 3%;
    left: 6%;
   }
    .call{
    width: 230px;
    }
    .call p{
    font-size: 1em;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:450px){
    .wraper-form{
    width: 300px;
    left: 15%;
   }
   .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:400px){
    .wrap-slider-img{
    background-position: -605px 0;
    }
    .wrap-slider-img p{
    margin: 20px auto 0;
    float: none;
    text-align: center;
    font-size: 2em;
    }
    .wrap-icon{
    width: 160px;
    margin: 150px 10px 0 0;
    overflow: hidden;
    }
    .appstore{
    float: none;
    margin: 0 auto;
    margin-bottom: 5px;
    }
    .googleplay{
    float: none;
    margin: 0 auto;
    }
    .wraper-form{
    left: 10%;
   }
    .call{
    width: 160px;
    margin: 30px 0 20px 5px;
    }
    .wrap-disp-content{
    width: 300px;
    margin: 0 auto;
    }
    .disp-button span{
    text-align: center;
    margin-top: 3px;
    font-size: 1.05em;
    font-weight: bold
    }
    .disp-but-1 span{
    width: 80%;
    margin-right: %;
    }
    .disp-but-2 span{
    width: 80%;
    margin-right: %;
    }
    .disp-but-3 span{
    width: 80%;
    margin-right: 0%;
    }
    .disp-but-4 span{
    font-size: 1.02em;
    margin-right: 0%;
    }
    .content-wrapper p {
    padding: 5px 10px;
   }
}

@media screen and (max-width:350px){
    .wraper-form{
    left: 1%;
   }
   .content-wrapper p {
    padding: 5px 10px;
   }
}

/*-------------  End Max @Media    ------------*/
/*------------- Custom CSS  --------------------*/
 div  .info1 {
    background:url("/images/icon_info.png") no-repeat scroll 14px 13px #FFFBCF;
    border:1px solid #D3D5C3;
    border-radius:5px 5px 5px 5px;
    margin-bottom:5px;
    padding:14px 20px 6px 48px;
    min-height:30px;
    max-width:600px;
}
 