.mobile__menu {
    position: fixed;
    bottom: 20px;
    left: calc(50% - 30px);
    z-index: 100;
}

.mobile__menu-button {
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #008000;
    border-radius: 50%;
    position: relative;
    bottom: 0;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, .35);
    z-index: 100;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.mobile__menu-button span {
    display: block;
    width: 32px;
    height: 4px;
    background: #fff;
    position: absolute;
    left: calc(50% - 16px);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.mobile__menu-button span:nth-child(1) {
    top: calc(35% - 2px);
}

.mobile__menu-button span:nth-child(2) {
    top: calc(50% - 2px);
}

.mobile__menu-button span:nth-child(3) {
    top: calc(65% - 2px);
}

.mobile__menu-button.menu-open span:nth-child(2) {
    opacity: 0;
}

.mobile__menu-button.menu-open span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate(45deg);
}

.mobile__menu-button.menu-open span:nth-child(3) {
    top: calc(50% - 2px);
    transform: rotate(-45deg);
}

.mobile__menu-button.menu-open {
    bottom: 20px;
    background: #9a050f;
    box-shadow: none;
}

.mobile__menu .under-text {
    color: #fff;
    position: absolute;
    bottom: -10px;
    opacity: 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    width: 130%;
    left: -15%;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transition-delay: 0.35s;
    -moz-transition-delay: 0.35s;
    -ms-transition-delay: 0.35s;
    -o-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.mobile__menu-button .under-text {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.mobile__menu-links.active-links .mobile__menu-link .under-text, .mobile__menu-button.menu-open .under-text {
    bottom: -30px;
    opacity: 1;
}

.mobile__menu-links {
    transform: scale(0.8);
    opacity: 0;
    position: fixed;
    top: 80%;
    left: calc(50% - 40px);
    z-index: 95;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.mobile__menu-links.active-links {
    transform: scale(1);
    top: 35%;
    opacity: 1;
}

.mobile__menu-links .mobile__menu-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    background: #ccc;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.mobile__menu-links .mobile__menu-link.phone-link {
    background: url('../img/new/phone.png') no-repeat scroll center center;
    background-size: cover;
    position: relative;
}

.mobile__menu-links .mobile__menu-link.about-link {
    background: url('../img/new/info.png') no-repeat scroll center center;
    background-size: cover;
    left: auto;
    right: 0;
}

.mobile__menu-links.active-links .mobile__menu-link.about-link {
    left: auto;
    right: calc(100% + 50px);
}

.mobile__menu-links .mobile__menu-link.insta-link {
    background: url('../img/new/insta.png') no-repeat scroll center center;
    background-size: cover;
    top: auto;
    bottom: 0;
}

.mobile__menu-links.active-links .mobile__menu-link.insta-link {
    top: auto;
    bottom: calc(100% + 50px);
}

.mobile__menu-links .mobile__menu-link.road-link {
    background: url('../img/new/way.png') no-repeat scroll center center;
    background-size: cover;
    right: auto;
    left: 0;
}

.mobile__menu-links.active-links .mobile__menu-link.road-link {
    right: auto;
    left: calc(100% + 50px);
}

.mobile__menu-links .mobile__menu-link.cont-link {
    background: url('../img/new/map.png') no-repeat scroll center center;
    background-size: cover;
    bottom: auto;
    top: 0;
}

.mobile__menu-links.active-links .mobile__menu-link.cont-link {
    bottom: auto;
    top: calc(100% + 50px);
}

.mobile__menu-links .mobile__menu-link a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-size: 0;
}

.mobile__menu-links .mobile__menu-link a:hover, .mobile__menu-links .mobile__menu-link a:focus, .mobile__menu-links .mobile__menu-link a:active {
    background: rgba(0, 0, 0, 0.15);
}

.black__overflow {
    opacity: 0;
    z-index: 90;
    position: absolute;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.black__overflow.reveal {
    opacity: 0.87;
}

.black__overflow .black__overflow-background {
    background: #131a22;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-models {
    cursor: pointer;
    float: right;
    position: relative;
    padding: 22px 20px;
    text-transform: uppercase;
}

.header-models span:after {
    display: block;
    content: '';
    position: absolute;
    background: url('../img/new/arrow-down.png') no-repeat scroll center center;
    background-size: cover;
    width: 16px;
    height: 9px;
    right: -5px;
    top: 27px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header-models span.active:after {
    transform: rotate(180deg);
}

.models-list {
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.models-list.active {
    overflow: auto;
    height: calc(100vh - 70px);
}

.models-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.models-list ul li {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.models-list ul li a {
    display: block;
    margin: 0;
    padding: 0;
    height: 80px;
    width: 100%;
    border-bottom: 1px solid #eff1f1;
}

.models-list ul li a img {
    height: 100%;
}

.models-list ul li a span {
    color: #333;
    padding: 0 20px;
    text-transform: uppercase;
}

.body-stop {
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    footer {
        border-top: 2px solid #d8dbe2;
    }

    footer .footer-line-2 {
        padding-top: 20px;
        text-align: left;
    }

    footer .footer-col-5 h3, footer .footer-line-3, footer .footer-pay, footer .footer-col-2, footer .footer-col-3, footer .footer-col-4, footer .footer-col p.last {
        display: none;
    }

    footer .footer-col-5 .footer-soc {
        width: 18%;
        float: left;
        text-align: center;
    }

    footer .footer-col-5 a .footer-icon {
        margin: 0 auto;
    }

    footer .footer-col-5 a .footer-icon-text {
        font-size: 12px;
    }

    footer .footer-col-5 .footer-soc:nth-child(4), footer .footer-col-5 .footer-soc:nth-child(5) {
        float: right;
    }

    footer .footer-col-content {
        height: auto;
    }

    #page-content-wrapper {
        padding-top: 0;
    }

    .page-block-mobile-banner {
        background-size: auto 70%;
        margin-bottom: 0px;
    }

    .page-block-mobile-banner h1 {
        font-size: 24px;
        text-transform: uppercase;
        font-family: 'Land Rover Web', sans-serif;
    }

    .page-block-mobile-banner-text.page-block .row{
        background: unset;
        margin-top: unset;
        padding: unset;
    }

    .page-block-mobile-banner-text {
        background: url('../img/new/text-back.jpg') no-repeat scroll center center;
        background-size: cover;
        padding-top: 20px;
        padding-bottom: 15px !important;
        font-family: 'Land Rover Web', sans-serif;
    }
}

@media screen and (max-width: 600px) {

    .container-service-1 .row div:nth-child(1) h2:before {
        background: url('../img/icon/icon-menu-remont.png') no-repeat scroll center center;
        background-size: contain;
    }

    .container-service-1 .row div:nth-child(2) h2:before {
        background: url('../img/icon/icon-menu-online.png') no-repeat scroll center center;
        background-size: contain;
    }

    .container-service-1 .row div:nth-child(3) h2:before {
        background: url('../img/icon/icon-menu-3.png') no-repeat scroll center center;
        background-size: contain;
    }

    .container-service-1 .row div:nth-child(4) h2:before {
        background: url('../img/icon/icon-menu-4.png') no-repeat scroll center center;
        background-size: contain;
    }

    .all-team .container-team-1 .col-team {
        display: block;
    }
}

.carousel-front-nav .slide-nav {
    outline: none;
}

.carousel-front-nav .slide-nav.slick-current {
    background: none;
}

.carousel-front-nav .slick-current .slide-nav-content {
    border: none;
}

.carousel-front-nav .slick-current h3, .carousel-front-nav .slick-current img {
    display: none;
}

.carousel-front-nav .slick-current .slide-nav-line {
    border-top: 1px solid #fff;
}

.page-block-main-links {
    padding-top: 15px;
}

.page-block-main-links .main-links-content ul {
    width: 100%;
    margin: 0;
    list-style: none;
    padding: 0;
}

.page-block-main-links .main-links-content ul li {
    width: 100%;
    height: 70px;
    text-align: center;
}

.page-block-main-links .main-links-content ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 70px;
    font-size: 20px;
    background: #9c9ea9;
    color: #fff;
}

.page-block-main-links .main-links-content ul li:nth-child(2n) a {
    background: #fff;
    color: #000;
}

.front-form .form-group[data-step='2'], .front-form .form-group[data-step='3'] {
    display: none;
}

.header-line-menu {
    overflow: hidden;
    height: 45px;
    transition: .3s;
}

.header-line-menu.hide-bar {
    transform: translateY(-100%);
    opacity: 0;
    border-bottom: 0;
    position: relative;
    z-index: -1;
}

.main-page__slider-block {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;

    max-height: 498px;
    overflow: hidden;
}
.main-page__slider-block .main-page__slider {
    display: flex;
    max-width: 1050px;
}
.main-page__slider .main-page__slider-body {
    width: 100%;
}
.main-page__slider .main-page__slider-body .slick-list, .main-page__slider .main-page__slider-body .slick-track {
    height: 100%;
}

.main-page__slider .main-page__slider-body .main-slider__slide {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding-left: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-slider__video .main-slider__video-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    background-position: center;
    object-fit: cover;
    height: 100%;
}
.main-page__slider .main-page__slider-body .main-slider__slide:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.main-page__slider .main-page__slider-body .main-slider__slide.main-slider__video:after {
    background: rgba(0,0,0,.5);
}
.main-page__slider .main-page__slider-body .main-slider__slide div {
    max-width: 50%;
}
.main-slider__slide .main-slider__slide-title, .main-slider__slide .main-slider__slide-text {
    margin-bottom: 30px;
}
.main-slider__slide .main-slider__slide-title h3 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 50px;
    margin: 0;
}
.main-slider__slide .main-slider__slide-text p {
    font-size: 16px;
    line-height: 24px;
}
.main-slider__slide .main-slider__slide-button a {
    display: inline-block;
    border-radius: 5px;
    line-height: 50px;
    color: #fff;
    background-color: #131a22;
    font-family: 'Land Rover Web', sans-serif;
    text-transform: uppercase;
    padding: 0 50px;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
}
.main-slider__slide .main-slider__slide-button a:hover {
    background-color: #373737;
}
.main-page__slider-block .main-page__slider-right-blocks {
    display: flex;
    flex-direction: column;
    max-width: 450px;
}
.main-page__slider-right-blocks .slider__right-block {
    padding: 30px;
    transition: .3s;
}

.main-page__slider-right-blocks .slider__right-block a {
    display: block;
    border: 1px solid #fff;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: .3s;
}
.main-page__slider-right-blocks .slider__right-block:hover {
    padding: 20px;
    opacity: 0.9;
}
.main-page__slider-right-blocks .slider__right-block:hover a {
    padding: 30px;
}
.slider__right-block a .slider__right-block-title {
    display: flex;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    flex-direction: column;
    text-transform: uppercase;
}

.slider__right-block a .slider__right-block-title .slider__right-block-title-big {
    font-size: 24px;
}

.slider__right-block a .slider__right-block-text {
    padding: 10px 30px 0;
    display: flex;
    font-weight: 300;
    justify-content: center;
}
.main-page_nav-line {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    align-items: center;
}
.main-page_nav-line .main-page__slider-nav {
    display: flex;
    width: 70%;
}
.main-page_nav-line .main-page__slider-nav .slick-list {
    width: 100%;
}
.main-page_nav-line .main-page__slider-nav .slick-list .slick-track {
    width: auto!important;
    transform: none!important;
}
.main-page__slider-nav .nav__slider-item {
    width: auto!important;
    display: inline-block;
    border-radius: 5px;
    line-height: 45px;
    color: #131a22;
    padding: 0 50px;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
    border: 1px solid #d8dbe2;
    cursor: pointer;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.main-page__slider-nav .nav__slider-item:hover {
    opacity: .7;
}

.main-page__slider-nav .nav__slider-item span.duration {
    position: absolute;
    width: 0;
    height: 5px;
    top: 0;
    left: 0;
    background: #9a050f;
}

.main-page__slider-nav .nav__slider-item:focus {
    outline: none;
}
.main-page__slider-nav .nav__slider-item.slick-current {
    color: #9a050f;
}
.main-page_nav-line .main-page__issue .main-page__issue-icon {
    display:inline-block;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    background-image: url('/img/icon/issue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.main-page_nav-line .main-page__issue a {
    display: flex;
    color: #131a22;
    text-decoration: none;
    align-items: center;
    transition: .3s;
    font-weight: 500;
}
.main-page_nav-line .main-page__issue a:hover {
    opacity: .7;
}
.page-block-price h3.price-title {
    border-bottom: 2px solid #9a050f;
}

.work-price-block .container-price-1 .row.flexed-block, .work-price-block .container-service-1 .row.flexed-block {
    margin-left: -15px;
    width: auto;
}
.main-work-slider .slick-list {
    padding-bottom: 30px;
}
.main-work-slider .slick-track {
    display: flex;
    align-items: stretch;
}
.main-work-slider .slick-track .slick-slide {
    height: auto;
}
.main-work-slider.slick-dotted.slick-slider {
    margin-bottom: 90px;
}
.main-work-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 10px;
}
.main-work-slider .slick-dots li button {
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    padding: 0;
    transition: .3s;
    background-color: #131a22;
}
.main-work-slider .slick-dots li.slick-active button {
    border: 2px solid #131a22;
    background-color: #ffffff;
}
.main-work-slider .slick-dots li button:before {
    display: none;
}
.main-work-slider .work__slider-item:focus {
    outline: none;
}
.work__slider-item .work__slider-item-border {
    border-radius: 8px;
    border: 1px solid #d8dbe2;
    overflow: hidden;
    transition: .3s;
    height: 100%;
    background: #fff;
}
.work__slider-item:hover .work__slider-item-border {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.work__slider-item .work__slider-item-img {
    background-color: #131a22;
}
.work__slider-item .work__slider-item-img .img-block {
    padding: 37%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
}
.work__slider-item .work__slider-item-img .img-line {
    width:0;
    background-color: #9a050f;
    height: 5px;
    transition: .3s;
}

.work__slider-item:hover .work__slider-item-img .img-line {
    width: 100%;
}

.work__slider-item .work__slider-item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    min-height: 253px;
    justify-content: space-between;
    color: #131a22;
    text-decoration: none;
}

.work__slider-item .work__slider-item-text h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Land Rover Web', sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
}
.work__slider-item .work__slider-item-text hr {
    width: 50%;
}

.work__slider-item .work__slider-item-text span {
    font-family: 'Land Rover Web', sans-serif;
    font-size: 18px;
}
.work__slider-item .work__slider-item-text span.price-red {
    color: #9a050f;
}

.work__slider-item .work__slider-item-text button {
    display: inline-block;
    border-radius: 5px;
    line-height: 40px;
    color: #fff;
    _background-color: #9a050f;
    background-color: #008000;
    font-family: 'Land Rover Web', sans-serif;
    text-transform: uppercase;
    padding: 0 50px;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    margin-top: 20px;
    outline: none;
    border: none;
}

.block__line {
    display: flex;
    align-items: stretch;
}

.block__line .block__line-item:focus {
    outline: none;
}
.block__line .block__line-item-border {
    border-radius: 8px;
    border: 1px solid #d8dbe2;
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
}
.block__line-item:hover .block__line-item-border {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.block__line-item .block__line-item-content {
    text-decoration: none;
}
.block__line-item .block__line-item-img {
    background-color: #131a22;
    display: block;
}
.block__line-item .block__line-item-img .img-block {
    padding: 37%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
}
.block__line-item .block__line-item-img .img-line {
    width:0;
    background-color: #9a050f;
    height: 5px;
    transition: .3s;
    display: block;
}

.block__line-item:hover .block__line-item-img .img-line {
    width: 100%;
}

.block__line-item .block__line-item-text {
    display: flex;
    flex-direction: column;
    padding: 25px 15px;
}

.block__line-item .block__line-item-text h3 {
    color: #131a22;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Land Rover Web', sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
}
.block__line-item .block__line-item-text p {
    color: #252525;
    font-size: 14px;
    font-weight: 300;
}

.block__line-item .block__line-item-link {
    border-top:1px solid #d8dbe2;
    display: flex;
}

.block__line-item .block__line-item-link a {
    display: inline-block;
    line-height: 50px;
    color: #131a22;
    font-family: 'Land Rover Web', sans-serif;
    text-transform: uppercase;
    padding: 0 15px;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}
.block__line-item .block__line-item-link a:after {
    content: '→';
    display: inline-block;
    transition: .3s;
    font-size: 16px;
    color: #9a050f;
    margin-left: 10px;
}
.block__line-item .block__line-item-link a:hover {
    color: #9a050f;
}
.block__line-item .block__line-item-link a:hover:after {
    margin-left: 15px;
}
.page-block-popular-services .container-blog-1 {
    margin-bottom: 50px;
}

.block__video {
    display: flex;
    align-items: stretch;
}
.block__video-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.block__video-item .video__item-pic {
    display: flex;
    flex-direction: column;
    background-color: #131a22;
}
.block__video-item .video__item-pic .video__item-img {
    padding: 28%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.block__video-item .video__item-pic .video__item-img:before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('/img/icon/ytube.svg');
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 0;
    position: absolute;
    filter: grayscale(1);
    opacity: .8;
    transition: .3s;
}
.block__video-item:hover .video__item-pic .video__item-img:before {
    filter: grayscale(0);
    opacity: 1;
}
.block__video-item .video__item-pic .video__item-line {
    width:0;
    background-color: #9a050f;
    height: 5px;
    transition: .3s;
}

.block__video-item:hover .video__item-pic .video__item-line {
    width: 100%;
}
.block__video-item .video__item-text {
    display: flex;
    flex-direction: column;
}

.block__video-item .video__item-title {
    color: #131a22;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Land Rover Web', sans-serif;
    margin: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    line-height: 22px;
    max-height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.block__video-item .video__item-info {
    color: #252525;
    font-size: 14px;
    font-weight: 300;
}
.container-yt {
    margin-bottom: 40px;
}
.container-inst-2 span.icon-yt {
    background-image: url('/img/icon/ytube.svg');
    width: 40px;
    height: 36px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.header-line-menu ul li:hover > a {
    color: #9a050f;
}
.main__menu-line {
    display: flex;
    justify-content: space-between;
}
.main__menu-line .main__menu-left {
    width: 25%;
    background-color: #fff;
    padding-top: 40px;
}
.main__menu-line .main__menu-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main__menu-line .main__menu-left ul li {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    transition: .3s;
}
.main__menu-line .main__menu-left ul li a {
    line-height: 40px;
    text-transform: uppercase;
    font-size: 14px;
    color: #131a22;
    font-family: 'Land Rover Web', sans-serif;
    transition: .3s;
}
.main__menu-line .main__menu-left .menu__left-parent ul li {
    position: relative;
}
.main__menu-line .main__menu-left .menu__left-parent ul li.active {
    background-color: #ebebeb;
}
.main__menu-line .main__menu-left .menu__left-parent ul li.active a {
    color: #9a050f;
}
.main__menu-line .main__menu-left .menu__left-parent ul li.left-padding, .main__menu-line .main__menu-left .menu__left-social, .main__menu-line .main__menu-left .menu__left-nav {
    padding-left: calc((100vw - 1200px) / 2);
}
.main__menu-line .main__menu-left .menu__left-parent .menu__left-child ul li a{
    line-height: 20px;
    text-transform: none;
    font-size: 14px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    color: #1b1e21;
}
.main__menu-line .main__menu-left ul li:hover {
    color: #9a050f;
}
.main__menu-line .main__menu-left .menu__left-child {
    position: absolute;
    width: 120%;
    top: 0;
    left: 100%;
    display: none;
    background-color: #ebebeb;
    transition: .3s;
}
.main__menu-line .main__menu-left .menu__left-child ul li:hover {
    background: #ffffff;
}
.main__menu-line .main__menu-left .menu__left-child ul li:hover a, .main__menu-line .main__menu-left .menu__left-nav ul li:hover a {
    color: #9a050f;
}
.main__menu-line .main__menu-left .menu__left-child ul li {
    padding: 10px 15px 10px 30px;
}
.main__menu-line .main__menu-left ul li.active .menu__left-child {
    display: block;
}
.main__menu-line .main__menu-left .menu__left-parent, .main__menu-line .main__menu-left .menu__left-nav {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}
.main__menu-line .main__menu-left .menu__left-nav {
    padding-top: 15px;
}
.main__menu-line .main__menu-right {
    width: 36%;
    margin-right: calc((100vw - 1200px) / 2);
    margin-top: 35px;
}
.main__menu-line .main__menu-right .main__menu-banner a {
    min-height: 300px;
    max-height: 340px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 5px solid #fff;
}
.main__menu-line .main__menu-right .main__menu-banner a span {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 24px;
    transition: .3s;
}
.main__menu-line .main__menu-right .main__menu-banner a:hover span {
    margin-bottom: 15px;
}
.main__menu-line .main__menu-right .main__menu-banner .main__menu-banner-title {
    text-shadow: #505050 0 0 4px;
}
.page-block-services .page-block-content p {
    font-size: 14px;
    font-weight: 300;
}
.header-line-menu .sub-menu {
    height: auto;
    background: #ebebeb;
    padding-top: 0;
    border-top: 1px solid #d8dbe2;
    box-shadow: 0 8px 16px rgba(0,0,0,0.27);
}
.menu__left-social {
    margin-top: 10px;
    padding-bottom: 90px;
}
.menu__left-social ul {
    display: flex;
    align-items: center;
}
.menu__left-social ul li a svg {
    height: 15px;
    width: auto;
    fill: #6a6e72;
}
.menu__left-social ul li a:hover svg {
    fill: #1b1e21;
}
.tecdoc__link-list a {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    transition: .3s;
}
.tecdoc__link-list a:hover {
    color: #9a050f;
}
.tec-doc-doc.tec-doc-item .col-subservice-bg-block {
    border-bottom: 8px solid #9a050f;
}
.row-popular .tec-doc-doc.tec-doc-item a:hover .col-subservice-bg {
    background-size: 105%;
}
.popular-flex-row.tec-doc-doc.tec-doc-item a:hover {
    box-shadow: none;
}
@media screen and (max-width: 600px) {
    .tec-doc-doc.tec-doc-item .col-subservice-bg {
        display: none;
    }
}
@media screen and (max-width: 1500px) {
    .main-page__slider .main-page__slider-body .main-slider__slide {
        padding-left: calc((100vw - 1200px)/2);
    }
    .main-page__slider-block .main-page__slider {
        max-width: 72%;
    }
    .main-page__slider-block .main-page__slider-right-blocks {
        max-width: 28%;
    }
}
@media screen and (max-width: 1230px) {
    .main-page__slider .main-page__slider-body .main-slider__slide {
        padding-left: 15px;
    }
}
@media screen and (max-width: 992px) {
    .main-page__slider-section, .header-line-menu, .main-work-slider {
        display: none;
    }
    .block__line, .block__video {
        flex-wrap: wrap;
    }
    .block__line .block__line-item, .block__video .block__video-item {
        margin-bottom: 30px;
    }
}