@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v14-latin_cyrillic-regular.eot'); /* IE9 Compat Modes */
  src: local('Ubuntu Regular'), local('Ubuntu-Regular'),
       url('../fonts/ubuntu-v14-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/ubuntu-v14-latin_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/ubuntu-v14-latin_cyrillic-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/ubuntu-v14-latin_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/ubuntu-v14-latin_cyrillic-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */
}
/* ubuntu-700 - latin_cyrillic */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ubuntu-v14-latin_cyrillic-700.eot'); /* IE9 Compat Modes */
  src: local('Ubuntu Bold'), local('Ubuntu-Bold'),
       url('../fonts/ubuntu-v14-latin_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/ubuntu-v14-latin_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/ubuntu-v14-latin_cyrillic-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/ubuntu-v14-latin_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/ubuntu-v14-latin_cyrillic-700.svg#Ubuntu') format('svg'); /* Legacy iOS */
}

.open_menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 35px;
    height: 23px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.open_menu span {
    display: block;
    height: 3px;
    background: #fff;
    width: 100%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a {
    color: inherit;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
}

body,
html {
    margin: 0px;
    padding: 0px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
}

input,
select,
textarea {
    font-family: 'Ubuntu', sans-serif;
}

.container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 15px;
}

.header {
    position: absolute;
    left: 0px;
    top: 50px;
    width: 100%;
    color: #fff;
    padding-top: 40px;
    z-index: 4;
}

@media screen and (max-width: 1230px) {
    .header {
        top: 0px;
    }
}

.header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .container .logo {
    margin-left: -90px;
}

.header .container .menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.header .container .menu ul li {
    margin-right: 40px;
}

.header .container .menu ul li a {
    text-decoration: none;
}

.header .container .menu ul li a:hover {
    color: #ff5722;
}

.header .container .phone {
    margin-right: -90px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.header .container .phone:hover {
    color: #ff5722;
}

.banner-titovec {
    display: block;
    background-image: url('../img/banner_titovec.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eeeeee;
    height: 50px;
}

.banner-titovec_mobile {
    display: none;
    margin-top: 54px;
    background-size: contain;
}

@media screen and (max-width: 1230px) {
    .banner-titovec_desktop {
        display: none;
    }

    .banner-titovec_mobile {
        display: block;
    }
}

@media screen and (max-width: 750px) {
    .banner-titovec_mobile {
        margin-top: 43px;
        background-size: cover;
    }
}

.shell_main_advantage {
    position: relative;
    overflow: hidden;
}

.main_screen:after {
    position: absolute;
    content: '';
    width: 3000px;
    height: 3000px;
    background: rgba(0, 0, 0, 0.78);
    top: 51%;
    left: 50%;
    margin-top: -2000px;
    margin-left: -3458px;
    z-index: 2;
    transform: rotate(45deg);
}

.main_screen {
    background: #000;
    color: #fff;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.main_screen:before {
    content: '';
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.main_screen .video_main_screen {
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    height: auto;
    width: 100%;
}

.main_screen .video_main_screen[poster] {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
}

.main_screen .container {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 113px;
    padding-bottom: 37px;
    position: relative;
}

.main_screen .container > * {
    position: relative;
    z-index: 4;
}

.main_screen .container .main_screen_title {
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 43px;
}

.main_screen .container .main_screen_description {
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 57px;
    color: #a8aaad;
}

.btn_default {
    width: 260px;
    height: 60px;
    background: #ff5722;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: 0px;
}

.btn_default span {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn_default:hover {
    background: #ff8529;
    -webkit-box-shadow: 0px 10px 15px 0px rgba(255, 87, 34, 0.2);
    box-shadow: 0px 10px 15px 0px rgba(255, 87, 34, 0.2);
}

.btn_map {
    width: 336px;
}

@media screen and (max-width: 750px) {
    .btn_map {
        width: 100% !important;
        padding: 0px 25px;
    }
}

.advantages {
    margin-top: -83px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.advantages .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 45px;
    padding-bottom: 56px;
    left: 0px;
    position: relative;
}

.advantages .container:before {
    position: absolute;
    content: '';
    top: -7px;
    left: -180px;
    border: 92px solid transparent;
    border-right: 92px solid whitesmoke;
    border-bottom: 92px solid whitesmoke;
}

.advantages .container:after {
    content: '';
    height: 100%;
    left: 0px;
    width: -webkit-calc(100% + 400vh);
    width: calc(100% + 400vh);
    top: 0px;
    background: #f5f5f5;
    position: absolute;
    z-index: 0;
}

.advantages .container .advantage_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.advantages .container .advantage_item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.advantages .container .advantage_item .advantage_img {
    width: 60px;
    margin-right: 40px;
}

.advantages .container .advantage_item .advantage_img img {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.advantages .container .advantage_item .advantage_text {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.about {
    padding-top: 100px;
    padding-bottom: 80px;
}

.about .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about .container .about_info {
    width: 555px;
    padding-top: 80px;
}

.about .container .about_info .shell_about_text {
    padding-left: 100px;
    width: 460px;
}

.about .container .about_info .about_title {
    line-height: 40px;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 55px;
}

.about .container .about_info .about_text {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 35px;
}

.about .container .about_info .about_icon_panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.about .container .about_info .about_icon_panel .image {
    width: 60px;
    margin-right: 30px;
}

.about .container .about_info .about_icon_panel .text {
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.about .container .about_images {
    width: 555px;
}

.about .container .about_images .image_top {
    width: 458px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.about .container .about_images .image_bottom {
    margin-right: auto;
    margin-top: -85px;
    width: 360px;
    position: relative;
    z-index: 2;
}

.about .container .about_images img {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.about .container .about_images img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.constructor {
    padding: 80px 0px;
    position: relative;
}

@media screen and (min-width: 1230px) {
	.constructor:after{
	    content: '';
	    position: absolute;
	    right: 0px;
	    bottom: 100px;
	    border: 65px solid transparent;
	    border-right: 65px solid #f5f5f5;
	    border-bottom: 65px solid #f5f5f5;
	}
}

.constructor .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.constructor .container .constructor_image {
    width: 585px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
}
.constructor .container .constructor_image img {
    position: relative;
    margin-bottom: -217px;
}

.constructor .container .constructor_image #change_image_constructor_top {
    z-index: 4;
}

.constructor .container .constructor_image #change_image_constructor_bottom {
    z-index: 3;
}
.constructor .container .constructor_image img:nth-child(1) {
    z-index: 5;
    position: relative;
    bottom: 16px;
}

.constructor .container .constructor_image img:nth-child(2) {
    z-index: 3;
}

.constructor .container .constructor_image img:nth-child(3) {
    z-index: 2;
}

.constructor .container .constructor_image img:nth-child(4) {
    z-index: 1;
}

.constructor .container .constructor_image img:nth-child(5) {
    z-index: 0;
}

.constructor .container .constructor_panel {
    width: 457px;
}

.constructor .container .constructor_panel .constructor_panel_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 135px;
}

.constructor .container .constructor_panel .constructor_panel_item .ico {
    width: 60px;
    margin-right: 35px;
}

.constructor .container .constructor_panel .constructor_panel_item .info {
    width: -webkit-calc(100% - 95px);
    width: calc(100% - 95px);
}

.constructor .container .constructor_panel .constructor_panel_item .info .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.constructor .container .constructor_panel .constructor_panel_item .info .text {
    font-size: 18px;
    line-height: 35px;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 165px;
    margin-bottom: 40px;
    cursor: pointer;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item:hover .ico_item:before,
.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item.active .ico_item:before {
    opacity: 1;
    visibility: visible;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item:hover .title_item {
    color: #ff5722;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item .ico_item {
    width: 30px;
    height: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 14px;
    position: relative;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item .ico_item:before {
    content: '';
    width: -webkit-calc(100% + 6px);
    width: calc(100% + 6px);
    height: -webkit-calc(100% + 6px);
    height: calc(100% + 6px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: -3px;
    top: -3px;
    border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #f9801f;
    box-shadow: 0px 0px 0px 2px #f9801f;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 1;
    visibility: hidden;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item .title_item {
    width: -webkit-calc(100% - 72px);
    width: calc(100% - 72px);
    font-size: 16px;
}

.constructor .container .constructor_panel .constructor_panel_item .change_panel_constructor .item .title_item span {
    border-bottom: 1px dotted;
}


.dies {
    padding: 100px 0px;
    background: #1a1a1a;
    position: relative;
}
.dies:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    border: 65px solid transparent;
    border-left: 65px solid #f5f5f5;
    border-top: 65px solid #f5f5f5;
}
.dies:after{
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    border: 65px solid transparent;
    border-right: 65px solid #f5f5f5;
    border-bottom: 65px solid #f5f5f5;
}
.dies .container .top_panel {
    margin-bottom: 78px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dies .container .top_panel .dies_swiper_buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.dies .container .top_panel .dies_swiper_buttons .swiper-button {
    cursor: pointer;
    padding: 0px 16px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.dies .container .top_panel .dies_swiper_buttons .swiper-button.swiper-next:hover {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.dies .container .top_panel .dies_swiper_buttons .swiper-button.swiper-prev:hover {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.dies .container .slide_item {
    padding: 40px 60px;
    width: 460px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    min-height: 315px;
    cursor: default;
}

.dies .container .slide_item:hover .title {
    color: #ff5722 !important;
}

.dies .container .slide_item .top_slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.dies .container .slide_item .top_slide .img {
    width: 80px;
    margin-right: 30px;
}

.dies .container .slide_item .top_slide .title {
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.dies .container .slide_item .text {
    color: #80807e;
    font-size: 18px;
    line-height: 36px;
}

.dies .container .dies_info {
    margin-top: 60px;
}

.dies .container .dies_info .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.dies .container .dies_info .item .ico {
    width: 30px;
    margin-right: 35px;
}

.dies .container .dies_info .item .title {
    width: -webkit-calc(100% - 65px);
    width: calc(100% - 65px);
    font-size: 16px;
    color: #7c7c7c;
}

.footer {
    padding: 44px 0px;
    background: #1a1a1a;
}

.footer .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    line-height: 18px;
    color: #676767;
}

.footer .container a {
    color: #fff;
    text-decoration: none;
}

.footer .container a:hover {
    color: #ff5722;
}

.title_zg {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff5722;
    line-height: 60px;
    padding-left: 100px;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

.title_zg:hover {
    padding-left: 0px;
}

.contacts {
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #212121;
    background-repeat: no-repeat;
    background-position: center;
}

.contacts .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-left: 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 500px;
    position: relative;
    left: -345px;
}

.contacts .container > * {
    position: relative;
    z-index: 1;
}

.contacts .container:before {
    position: absolute;
    content: '';
    width: 3000px;
    height: 3000px;
    background: rgba(0, 0, 0, 0.78);
    top: 51%;
    left: 50%;
    margin-top: -2000px;
    margin-left: -2985px;
    z-index: 1;
    transform: rotate(45deg);
}

.contacts .container .contact_title {
    padding-left: 0px;
    margin-bottom: 75px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.contacts .container .contact_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 360px;
    margin-bottom: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.contacts .container .contact_item .ico {
    width: 30px;
    margin-right: 30px;
    top: 8px;
    position: relative;
}

.contacts .container .contact_item .text {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
    color: #a8a8a8;
    font-size: 18px;
    line-height: 35px;
}

.contacts .container .contact_item .text a {
    text-decoration: none;
}

.contacts .container .contact_item .text a:hover {
    color: #ff5722;
}

.services {
    margin-top: -100px;
    padding-top: 245px;
    padding-bottom: 75px;
    overflow: hidden;
    background: #f5f5f5;
}

.services.services_matrix {
	padding-top: 148px;
}

.services_matrix_container {
	position: relative;
	top: -266px;
	display: flex;
	justify-content: space-between;
}

.services_matrix .container_white_panel {
	height: 626px !important;
}

.services_matrix_container .services_info {
	margin-top: 266px !important;
}

.services_matrix .title_zg {
	padding-bottom: 42px;
}

.services_matrix_content {
	display: flex;
	flex-direction: row;
}

.services_matrix_img {
	width: 325px;
    margin-right: 31px;
    padding-top: 14px;
}

.services_matrix_text {
	font-size: 18px;
    line-height: 35px;
    margin-bottom: 35px;
}

.services_matrix .btn_default {
	margin-left: 100px;
    margin-top: 34px;
}

.services_swiper_buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    justify-content: space-between;
    margin: 0 0 40px 100px;
    z-index: 99;
    position: relative;
}

.services_swiper_buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.services_swiper_buttons .swiper-button {
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.services_swiper_buttons .swiper-button.swiper-next:hover {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.services_swiper_buttons .swiper-button.swiper-prev:hover {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.services .container .title_zg {
    margin-bottom: 25px;
}

.services .container.container_white_panel {
    padding: 80px 0px;
    padding-left: 100px;
    background: #fff;
    position: relative;
    height: 690px;
}

.services .container.container_white_panel:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    border: 40px solid transparent;
    border-left: 40px solid #f5f5f5;
    border-top: 40px solid #f5f5f5;
}

.services .container.container_white_panel:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4000px;
    right: -4000px;
    top: 0px;
    background: #fff;
}

.services .container.container_white_panel .services_info {
    width: 457px;
    margin-top: 200px;
}

.services .container.container_white_panel .services_info .services_title {
    line-height: 40px;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 55px;
}

.services .container.container_white_panel .services_info .shell_service_text {
    padding-left: 100px;
}

.services .container.container_white_panel .services_info .services_text {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 35px;
}

.services .container.container_white_panel .services_image {
    width: 457px;
}

.services .container.container_white_panel .services_image img {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.services .container.container_white_panel .services_image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.services .swiper-slide {
    display: flex;
    justify-content: space-between;
}

.services .swiper-container {
    position: relative;
    top: -200px;
}

.how_to_order {
    padding: 75px 0px;
    background-color: #f5f5f5;
    background-image: url(../img/order_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom -61px;
    background-position-x: -248px;
}

.how_to_order .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.how_to_order .container .order_left {
    width: 460px;
    padding-left: 100px;
}

.how_to_order .container .order_left .title_zg {
    padding-left: 0px;
    margin-bottom: 50px;
}

.how_to_order .container .order_left .text {
    font-size: 18px;
    line-height: 35px;
}

.how_to_order .container .order_left .text a {
    font-size: 20px;
    color: #ff5722;
    text-decoration: none;
    font-weight: 700;
}

.how_to_order .container .order_left .text a:before {
    background: #ff5722;
}

.how_to_order .container .order_right {
    width: 390px;
}

.how_to_order .container .order_right .list_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.how_to_order .container .order_right .list_item:hover .ico {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.how_to_order .container .order_right .list_item .ico {
    width: 30px;
    margin-right: 30px;
    position: relative;
    top: 10px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.how_to_order .container .order_right .list_item .text {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
    line-height: 30px;
    font-size: 16px;
}

.how_to_order .container .order_form {
    width: 100%;
    margin-top: 180px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.how_to_order .container .order_form .left {
    width: 48%;
    padding: 0px 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 60px;
    border: 2px dashed #fff;
    cursor: pointer;
}

.how_to_order .container .order_form .left:hover {
    border: 2px dashed #ff5722;
}

.how_to_order .container .order_form .left:hover img {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.how_to_order .container .order_form .left input {
    display: none;
}

.how_to_order .container .order_form .left img {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 30px;
}

.how_to_order .container .order_form .left .name {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.how_to_order .container .order_form .left .info {
    font-size: 16px;
    line-height: 30px;
}

.how_to_order .container .order_form .right {
    width: 48%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

.how_to_order .container .order_form .right .inp {
    width: 48%;
    height: 60px;
    background: #fff;
    border: 0px;
    outline: none;
    padding-left: 30px;
    color: #000;
    margin-bottom: 30px;
}

.how_to_order .container .order_form .right textarea.inp {
    width: 100%;
    height: 240px;
    padding-top: 25px;
    margin-bottom: 0px;
    resize: none;
}

.how_to_order .container .order_form button {
    margin-right: auto;
    margin-left: auto;
    cursor: pointer;
}

.popup_back {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.popup_back.active {
    opacity: 0.6;
    visibility: visible;
}

.success_sending {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.success_sending.active {
    opacity: 1;
    visibility: visible;
}

.success_sending .info {
    height: 330px;
    width: 100%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
}

.success_sending .info .success_title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.success_sending .info .succes_description {
    line-height: 32px;
    font-size: 18px;
}

.success_sending .close_success_popup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.mobile_menu {
    width: 300px;
    height: 100%;
    left: 0px;
    top: 0px;
    position: fixed;
    z-index: 10;
    background: #1a1a1a;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 0%, 100% 90%, 80% 100%, 0% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0, 100% 0%, 100% 90%, 80% 100%, 0% 100%, 0% 100%, 0% 0%);
    left: -300px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile_menu.active {
    left: 0px;
}

.mobile_menu .closed_mobile_menu {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.mobile_menu .closed_mobile_menu span {
    position: absolute;
    display: block;
    height: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    width: 30px;
    left: 0px;
    top: 20px;
    background: #fff;
}

.mobile_menu .closed_mobile_menu span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile_menu .closed_mobile_menu span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile_menu .logo {
    margin-bottom: 35px;
}

.mobile_menu .menu {
    margin-bottom: 30px;
}

.mobile_menu .menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.mobile_menu .menu ul li {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mobile_menu .menu ul li a {
    text-decoration: none;
}

.mobile_menu .phone {
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

#map {
    width: 120%;
    left: -10%;
    height: 110%;
    top: -5%;
    position: absolute;
    z-index: 0;
}

.application_text.hidden {
    display: none;
}

.application_text h1 {
    position: relative;
    top: -285px;
    font-size: 3em;
}

.application_text p {
    position: relative;
    top: -302px;
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.52);
}

.order_form .helper.hidden {
    display: none;
}

.order_form .helper {
    padding-top: 16px;
    font-size: 12px;
    color: #ff2222;
    font-weight: bold;
    width: 282px;
}

.order_form.hidden {
    opacity: 0;
}

.how_to_order .container .order_form .inp.f-incorrect::placeholder {
    color: red;
}

#map [class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%) invert(90%) brightness(75%);
}

#map [class*="ymaps-2"][class*="-map-bg"] {
    background-image: none !important;
}

#map [class*="ymaps-2"][class*="-controls__control"] {
    left: auto !important;
    right: 10% !important;
}

#map [class*="ymaps-2"][class*="-float-button"] {
    background-color: #060606 !important;
}

#map [class*="ymaps-2"][class*="-controls__control_toolbar"] {
    position: absolute !important;
    left: auto !important;
    right: 9.6% !important;
    top: 50px !important;
}

#map [class*="ymaps-2"][class*="-listbox__button "] {
    background-color: #b6b6b6 !important;
}

#map [class*="ymaps-2"][class*="-map-copyrights-promo"] {
    left: 44% !important;
    margin-bottom: 30px !important;
}

#map [class*="ymaps-2"][class*="-copyrights-pane"] {
    top: 95% !important;
    left: auto !important;
    right: 10% !important;
    position: absolute !important;
    opacity: 0.6 !important;
}