/*---------FONTS------------------*/

.fw-100 { font-weight: 100;}
.fw-300 { font-weight: 300;}
.fw-400 { font-weight: 400;}
.fw-500 { font-weight: 500;}
.fw-700 { font-weight: 700;}
.fw-800 { font-weight: 800;}
.fw-900 { font-weight: 900;}

/*---------ANIMATION--------------*/
@-webkit-keyframes morelink {
    0%   {-webkit-transform: translateY(5px);}
    18%  {-webkit-transform: translateY(25px);}
    36%  {-webkit-transform: translateY(3px);}
    52%  {-webkit-transform: translateY(12px);}
    75%  {-webkit-transform: translateY(5px);}
    100% {-webkit-transform: translateY(5px);}
}
@keyframes morelink {
    0%   {transform: translateY(5px);}
    18%  {transform: translateY(25px);}
    36%  {transform: translateY(3px);}
    52%  {transform: translateY(12px);}
    75%  {transform: translateY(5px);}
    100% {transform: translateY(5px);}
}

/*----------BUTTONS---------------*/
.btn-shc-white-outline {
    color: #fff;
    background-color: transparent;
    border: solid 1px #6b6b6b;
    border-radius: 0;
    font-size: 12px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
}
.btn-shc-white-outline:hover, .show .btn-shc-white-outline {
    color: #fff;
    background-color: #015683;
    border-color: #003450;
    box-shadow: 0 0 0 0.2rem rgba(97,66,82,.25);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.btn-shc-white-outline:focus, .show .btn-shc-white-outline {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(97,66,82,.25);
}

.btn-shc {
    color: #fff;
    background-color: #1792d8;
    border-color: #1792d8;
    border-radius: 60px;
    font-size: 14px;
    padding: 12px 25px;
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.btn-shc:hover {
    color: #fff;
    background-color: #0f7cba;
    border-color: #0f7cba;
    box-shadow: 0 0 0 0.2rem rgba(15, 124, 186, 0.26);
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.btn-shc:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(97,66,82,.25);
}

.btn-shc-shoko-outline {
    color: #7e452c;
    background-color: transparent;
    border: solid 1px #7e452c;
    border-radius: 60px;
    padding: 20px 35px;
    font-size: 12px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
}
.btn-shc-shoko-outline:after {
    opacity: 0;
    position: absolute;
    width: 30px;
    height: 10px;
    top: 13px;
    right: 25px;
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACvSURBVEhL7dOxCkFhGMbxTyQxyGAgZeASXIQr4hbMdjJZlEWpkzIwGZUsFuVC+D/ObjvPoPdfv/rOu3yn03lTFEXRj2YY5EdvS7zQ/z4ZK2ODB3oaOKtihzvaGjir4YArWho4q+OEC5oaqBEy6K2KpEvfOENfIXUxwbRgK+jiOWwNodVaoKSBI63SE2toxSx1oD3eoqKBI+3tDXton23p7z1Cq2RtjEZ+jKLo/0rpA2gyNELFbJ98AAAAAElFTkSuQmCC');
}
.btn-shc-shoko-outline:hover {
    padding-right: 76px;
}
.btn-shc-shoko-outline:hover:after {
    opacity: 1;
}
.btn-shc-shoko-outline:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(97,66,82,.15);
}

.btn-shc-violet-more {
    position: relative;
    border: 0;
    background: none;
    font-size: 10px;
    color: #5c3e6d;
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
}
.btn-shc-violet-more:hover {

}
.btn-shc-violet-more:focus {
    outline: 0;
    box-shadow: none;
}
.btn-shc-violet-more:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 18px;
    top: 6px;
    right: -31px;
    /*background: url(images/more-arrow.svg) no-repeat;*/
    background-size: 72%;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
}
.btn-shc-violet-more:hover:after {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}


.btn-transparent-white-outline {
    color: #fff;
    background-color: transparent;
    border: solid 2px #fff;
    border-radius: 60px;
    padding: 20px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s cubic-bezier(.17,.89,.38,1.49);
    transition:         all 0.2s cubic-bezier(.17,.89,.38,1.49);
}
.btn-transparent-white-outline:after {
    opacity: 0;
    position: absolute;
    width: 30px;
    height: 10px;
    top: 13px;
    right: 25px;
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACvSURBVEhL7dOxCkFhGMbxTyQxyGAgZeASXIQr4hbMdjJZlEWpkzIwGZUsFuVC+D/ObjvPoPdfv/rOu3yn03lTFEXRj2YY5EdvS7zQ/z4ZK2ODB3oaOKtihzvaGjir4YArWho4q+OEC5oaqBEy6K2KpEvfOENfIXUxwbRgK+jiOWwNodVaoKSBI63SE2toxSx1oD3eoqKBI+3tDXton23p7z1Cq2RtjEZ+jKLo/0rpA2gyNELFbJ98AAAAAElFTkSuQmCC');
}
.btn-transparent-white-outline:hover {
    padding-right: 76px;
    color: #fff;
}
input.btn-transparent-white-outline:hover {
    padding-right: 50px;
    padding-left: 50px;
    color: #000;
    background: #fff;
}
.btn-transparent-white-outline:hover:after {
    opacity: 1;
}
.btn-transparent-white-outline:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(97,66,82,.15);
}


.morelink {
    position: relative;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    margin-left: -50px;
}
.morelink-black {
    color: #3c3c3c;
}
.morelink-arrow {
    position: absolute;
    width: 36px;
    height: 1px;
    background: #fff;
    top: 7px;
    right: -49px;
    transition: all .3s;
}
.morelink-arrow:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    top: -4px;
    right: -3px;
}
.morelink-arrow:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
    top: 4px;
    right: -3px;
}
.morelink-black .morelink-arrow, .morelink-black .morelink-arrow:before, .morelink-black .morelink-arrow:after {
    background: #3c3c3c;
}
.morelink:hover .morelink-arrow, .big-service-link:hover .morelink-arrow {
    right: -65px;
}
.morelink-inline {
    margin-left: 0px;
}

.checkbox-container {
    display: block;
    color: #1792d8;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

/* Hide the browser's default checkbox */
.checkbox-container input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: solid 1px;
}
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkmark-true {
    position: relative;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
}
.checkmark-true:after {
    content: "";
    position: absolute;
    display: block;
    left: 8px;
    top: 4px;
    width: 10px;
    height: 15px;
    border: solid #797d80;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input.rf-error ~ .checkmark {
    border-color: #F0A39B!important;
    box-shadow: 0 0 0 0.2rem rgba(255,0,0,.25);
}

/*-----------LINKS-----------------*/
a {transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out,box-shadow .3s ease-in-out; color: #0283cc;}
a:hover {text-decoration: none; color: #04527f;}


/*----------CUSTOM STYLES ---------*/
body { font-family: 'Montserrat', sans-serif;  color: #494f54;}
.overflow-hidden { overflow: hidden; }
.hidden { display: none}
.bounce {
    -webkit-animation: morelink 2s infinite;
    animation: morelink 2s infinite;
}
.container-fluid-mx {
    padding-left: 100px;
    padding-right: 100px;
}
.corners {
    -webkit-border-radius: 40px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 40px;
    -moz-border-radius-topleft: 0;
    border-radius: 40px;
    border-top-left-radius: 0;
    overflow: hidden;
}
.form-control {
    border-radius: 0;
    height: calc(2.25rem + 12px);
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.77);
}
textarea.form-control {
    min-height: 100px;
}

/*-----------MODAL------------------*/

#orderModal {
    padding-right: 0!important;
    position:fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-order-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.modal-order-left-wrapper {
    position: relative;
    width: 50%;
    height: 100%;
    background:#f1f2f4  url("images/modal/call_back.jpg") no-repeat bottom right;
    background-size: cover;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 300ms linear 50ms;
    transition: transform 300ms linear 50ms,-webkit-transform 300ms linear 50ms;
}
.modal-order-left-wrapper:after {
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.7;
}
.modal-order-right-wrapper {
    position: relative;
    width: 50%;
    height: 100%;
    background: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 300ms linear 50ms;
    transition: transform 300ms linear 50ms,-webkit-transform 300ms linear 50ms;
}
.show .modal-order-left-wrapper, .show .modal-order-right-wrapper {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 300ms linear;
    transition: transform 300ms linear,-webkit-transform 300ms linear;
    overflow: auto;
}

.modal-close {
    position: absolute;
    display: none;
    width: 30px;
    height: 30px;
    /*background: url("images/close.png");*/
    top: 40px;
    right: 40px;
    cursor: pointer;
    -webkit-transition: opacity 300ms linear 450ms,-webkit-transform .3s ease-in-out;
    transition: opacity 300ms linear 450ms,transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
}
.modal-close:after {
    content: '';
    position: absolute;
    top:0;
    left: 15px;
    width: 3px;
    height:30px;
    background: #000;
    transform: rotate(-45deg);
}
.modal-close:before {
    content: '';
    position: absolute;
    top:0;
    left: 15px;
    width: 3px;
    height:30px;
    background: #000;
    transform: rotate(45deg);
}
.close-menu {
    /*background: url("images/close-w.png");*/
}
.modal-close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.show .modal-close {
    display: block;
}

.modal-order-right-content-wrapper {
    padding: 32px 100px;
}
.modal-order-right-content-wrapper .callback-wrapper {
    margin-top: 50px;
    padding: 20px 0;
    background: #fff !important;
}
.modal-order-right-content-wrapper .phone {
    font-size: 30px;
}

.fill-info {
    color: #0d0f27;
    font-size: 12px;
    line-height: 15px;
    margin-top: 20px;
}
.form-wrapper {
    color: #fff;
}
.modal-order-right-content-wrapper .form-wrapper {
    color: #00001f;
}

.rf-error {
    border-color: #F0A39B!important;
    box-shadow: 0 0 0 0.2rem rgba(255,0,0,.25);
}
.form-result {
    color: #ffffff;
    display: none;
}
.modal .form-result,
.form-action-handler .form-result{
    color: #00001f
}
.form-title {
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 20px;
}
/*----------------------------------*/

.first-screen {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
.page-screen {
    width: 100%;
    height: auto;
    min-height: 450px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
.index-gallery {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}
.ig-one {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3px 7px;
}
.index-gallery .slick-track, .index-gallery .slick-list {
    height:100% ;
}
.index-gallery-slider-nav__wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 150px;
    bottom: 100px;
}
.index-gallery-slider-nav .slick-track, .index-gallery-slider-nav .slick-list {
    height: 150px;
    padding-top: 20px;
    width: 80%;
    margin: 0 auto;
}
.ig-one-nav{
    display:inline-block;
    max-width: 110px;
    height: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all .3s;
}
:focus {
    outline: none!important;
}
.ig-one-nav.slick-current{
    border: solid 3px #fff;
    box-shadow: 0 5px 30px 1px #fbc05d;
}
.index-gallery .slick-arrow {
    position: absolute;
    z-index: 100;
    bottom: 30%;
    left: 60px;
    width: 65px;
    height: 37px;
    background: url(images/header/slider-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: all .3s;
}
.index-gallery .ig-arrow-right {
    right: 60px;
    left: auto;
    transform: rotate(180deg);
}
.index-gallery .ig-arrow-left:hover {
    transform: translateX(-20px);
}
.index-gallery .ig-arrow-right:hover {
    transform: translateX(20px) rotate(180deg);
}
.ig-one-title__wrapper {
    display: block;
    text-align: center;
    vertical-align: middle;
}
.ig-one-title__inner {
    display: block;
    margin: 5% 15% 0!important;
    transition: all .6s;
    opacity: 0;
    transform: translateY(-40px);
    transition-delay: .3s;
}
.slick-current .ig-one-title__inner {
    opacity: 1;
    transform: translateY(0);
}
.ig-one-title {
    font-weight: 900;
    display: inline!important;
    color: #fff;
    text-decoration: none;
    font-size: 50px;
    line-height: 55px;
    display: block;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 50px #000;
    transition: all .2s;
    border-bottom: solid 2px #fff;
}
.ig-one-title:hover {
    color: #fff;
    border-bottom: solid 8px #fff;
}

.header__wrapper {
    position: relative;
    height: 120px;
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
}
.header-phone__wrapper {
    position: relative;
}
.phone-descr {
    position: absolute;
    left: 27px;
    top: -13px;
    font-size: 9px;
    text-transform: uppercase;
    color: #fff;
}
.header-phone {
    font-size: 20px;
    line-height: 30px;
}
.header-link {
    font-size: 12px;
    border-bottom: dashed 1px #fff;
    margin-left: 12px;
}

.menu-sign__wrapper {
    display: inline-block;
    cursor: pointer;
    z-index: 550;
    position: relative;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background: #fff;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 30px;
    height: 3px;
}
.hamburger-inner:before {
    top: -9px;
}
.hamburger--collapse .hamburger-inner:after {
    top: -18px;
    transition: all .1s;
}
.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}
.hamburger--collapse:hover .hamburger-inner:after {
    width: 18px;
}

.blue-menu__wrapper {
    position: relative;
    z-index: 300;
}
.blue-menu {
    height: 95px;
    padding: 0;
}
.blue-menu__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(#005688, #1698e2);
    opacity: 0.95;
    box-shadow: 0 14px 74px 5px rgba(22, 145, 215, 0.5);
}
.blue-menu__inner {
    list-style: none;
    margin: 0;
    padding: 0 25px;
}
.blue-menu-point {
    text-align: center;
    height: 100%;
    transition: all .3s;
    transition-delay: .1s;
}
.blue-menu-point:after {
    content: '';
    width: 1px;
    height: 40px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -20px;
    opacity: .3;
}
.blue-menu-point.last-child:after {
    display: none;
}
.blue-menu-point a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
}
.blue-menu-point:hover{
    background-color: rgba(255, 255, 255, 0.3);
}
.blue-menu-point.opened {
    background-color: #fff;
}
.blue-menu-point:hover a, .blue-menu-point.opened a {
    color: #04527f;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -5000px;
    z-index: 400;
    display: block;
    opacity: 0;
    padding: 20px 50px 50px;
    margin: 0;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    /*transition: opacity .3s;
    transition-delay: .1s;*/
}
.dropdown-menu.opened {
    display: block;
    z-index: 300;
    opacity: 1;
    left: 0;
}
.dm-title {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 30px;
}
.dm-sublink__wrapper {
    background: #ededed;
    padding: 15px 20px;
}
.dm-sublink {
    position: relative;
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 500;
}
.dm-sublink:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.dm-sublink:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
}
.model-list__wrapper {
    position: relative;
    margin-top: 60px;
}
.model-list__wrapper.category__wrapper {
    margin: 20px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 3px 20px 0px #f0f0f0;
    transition: all .3s;
    z-index: 100;
    min-height: 160px;
}
.model-list__inner {
    position: relative;
    min-height: 270px;
    padding: 15px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .3s;
}
.page-text .model-list__inner {
    opacity: 1;
    transform: translateY(0);
}
.model-list__inner.mini {
    min-height: 210px;
}
.model-list__inner:after {
    content: '';
    position: absolute;
    text-align: center;
    width: 60%;
    height: 1px;
    background: #aaa;
    top: 100%;
    left: 50%;
    margin-left: -30%;
}
.dropdown-menu.opened .model-list__inner {
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu.opened .model-list__inner.hidden {
    opacity: 0;
    transform: translateY(30px);
}
.opened .model-list__inner:nth-child(1) {
    transition-delay: .1s;
}
.opened .model-list__inner:nth-child(2) {
    transition-delay: .15s;
}
.opened .model-list__inner:nth-child(3) {
    transition-delay: .25s;
}
.opened .model-list__inner:nth-child(4) {
    transition-delay: .35s;
}
.opened .model-list__inner:nth-child(5) {
    transition-delay: .45s;
}
.opened .model-list__inner:nth-child(6) {
    transition-delay: .55s;
}
.opened .model-list__inner:nth-child(7) {
    transition-delay: .65s;
}
.opened .model-list__inner:nth-child(8) {
    transition-delay: .65s;
}
.opened .model-list__inner:nth-child(9) {
    transition-delay: .65s;
}
.opened .model-list__inner:nth-child(10) {
    transition-delay: .65s;
}
.opened .model-list__inner:nth-child(11) {
    transition-delay: .65s;
}
.opened .model-list__inner:nth-child(12) {
    transition-delay: .65s;
}

.model-list-image {
    position: absolute;
    top: 20px;
    left: 0;
    width: 90%;
    height: 80%;
    background-size: cover;
    background-position: center center;
    transition: all .3s;
    transform: scale(0.9);
}
.model-list__inner:hover .model-list-image {
    transform: scale(1);
}
.model-list__inner.clicked .model-list-image {
    transform: scale(1.1);
}

.model-list-title {
    position: relative;
}
.model-list-title a {
    font-size: 25px;
    line-height: 18px;
    color: #3c3c3c;
    font-weight: 800;
}
.model-list-title a span {
    display: inline-block;
    position: relative;
    font-size: 23px;
    font-weight: 400;
    top: -15px;
}
.model-list__wrapper.category__wrapper .model-list-title {
    position: relative;
}
.model-list__wrapper.category__wrapper .model-list-title a {
    position: relative;
    font-size: 25px;
    line-height: 18px;
    color: #3c3c3c;
    font-weight: 800;
}
.model-list__wrapper.category__wrapper .model-list-title a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.model-list__wrapper.category__wrapper .model-list-title a:hover:after,
.model-list__wrapper.category__wrapper .model-list__inner:hover a:after{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
    transition: all .3s;
}
.model-list__wrapper.category__wrapper .model-list-title a span {
    display: inline-block;
    position: relative;
    font-size: 23px;
    font-weight: 400;
    top: -15px;
}
.model-list__inner.mini .model-list-title a {
    font-size: 23px;
}
.model-list-price {
    position: absolute;
    bottom: 10%;
    right: 30px;
    font-size: 30px;
    font-weight: 800;
}
.model-list-price i {
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    display: inline-block;
    position: relative;
    top: -10px;
}
.model-list-price span {
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    display: inline-block;
    position: relative;
    top: -10px;
}
.model-list__inner.mini .model-list-price {
    font-size: 20px;
}
.model-list__inner.mini .model-list-price span, .model-list__inner.mini .model-list-price i {
    font-size: 13px;
}

.model-list__category {
    padding: 20px 25px;
    margin: 20px 40px 40px;
    background: #efefef;
    text-transform: uppercase;
    font-weight: 800;
}
.model-list__categorytext {
    font-size: 14px;
    padding-bottom: 20px;
}

.model-list-badge-new {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #0e7dbc;
    color: #fff;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}
.model-list-badge-soon {
    position: absolute;
    bottom: 12%;
    right: 30px;
    background: #0e7dbc;
    color: #fff;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}
.model-list-badge-action {
    position: absolute;
    bottom: 12%;
    left: 20px;
    background: #c41108;
    color: #fff;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.model-list__inner.mini .model-list-badge-action {
    left: 10px;
}

.model-list__wrapper.category__wrapper .model-list__inner {
    cursor: pointer;
}

.model-more__wrapper {
    position: relative;
    background-image: url('images/bg/cars-more1.jpg');
    background-size: cover;
    padding: 20px 40px;
    box-shadow: 0 8px 60px 7px #737b7f;
}
.model-more__wrapper.more-moto {
    background-image: url('images/bg/moto-more.jpg');
}
.model-more-text {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    width: 400px;
    margin-bottom: 30px;
}
.model-more__wrapper .hot-phones-inner {
    margin: 0;
    opacity: 1;
    transform: none;
}
.model-more__wrapper .hot-phones-title {
    color: #fff;
    padding: 3px 0 1px;
    font-size: 11px;
}
.model-more__wrapper .hot-phoes-phone a {
    font-size: 22px;
    color: #fff;
}
.model-group__wrapper {
    margin-bottom: 30px;
}
.model-group {

}
.model-group a {
    position: relative;
    padding: 5px 19px;
    margin-right: 15px;
    border: solid 1px #fff;
    border-bottom: dotted 1px;
    color: #005586;
    text-transform: uppercase;
    font-size: 12px;
}
.model-group a.all {
    font-weight: 800;
}
.model-group a:hover {
    border: solid 1px;
}
.model-group a.selected {
    color: #fff;
    background: #005586;
    border: solid 1px #fff;
}

.service-tab__wrapper {

}
.service-tab__wrapper .nav-tabs {
    border: 0;
}
.service-tab {
    margin-bottom: -1px;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 15px;
    transition: all .3s;
}
.service-tab.active {
    background: #ececec;
}
.service-tab a {
    border-bottom: dashed 1px;
}
.service-tab.active a {
    border-bottom: 0;
    color: #000;
}
.sub-service-link {
    display: inline-block;
    margin-bottom: 15px;
    opacity: 0;
    min-width: 250px;
    transform: translateY(30px);
    transition: all .3s;
}
.sub-service-link.dm-sublink {
    font-size: 16px;
}
.show .sub-service-link, .opened .sub-service-link  {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu .tab-pane  .sub-service-link {
    opacity: 0;
    transform: translateY(30px);
}
.dropdown-menu.opened .tab-pane.show .sub-service-link {
    opacity: 1;
    transform: translateY(0);
}

.sub-service-link:nth-child(1) {
    transition-delay: .35s;
}
.sub-service-link:nth-child(2) {
    transition-delay: .45s;
}
.sub-service-link:nth-child(3) {
    transition-delay: .55s;
}
.sub-service-link:nth-child(4) {
    transition-delay: .65s;
}
.sub-service-link:nth-child(5) {
    transition-delay: .75s;
}
.sub-service-link:nth-child(6) {
    transition-delay: .85s;
}
.sub-service-link:nth-child(7) {
    transition-delay: 1.05s;
}
.sub-service-link:nth-child(8) {
    transition-delay: 1.25s;
}
.sub-service-link:nth-child(9) {
    transition-delay: 1.45s;
}
.sub-service-link:nth-child(10) {
    transition-delay: 1.65s;
}
.sub-service-link:nth-child(11) {
    transition-delay: 1.85s;
}
.sub-service-link:nth-child(12) {
    transition-delay: 2.05s;
}
.sub-service-link:nth-child(13) {
    transition-delay: 2.25s;
}
.sub-service-link:nth-child(14) {
    transition-delay: 2.45s;
}
.sub-service-link:nth-child(15) {
    transition-delay: 2.65s;
}
.sub-service-link:nth-child(16) {
    transition-delay: 2.85s;
}
.sub-service-form__wrapper {
    padding: 50px;
    background: #ececec;
}
.sub-service-form__wrapper h3 {
    margin-bottom: 40px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.dm-text {
    font-size: 13px;
    position: absolute;
    width: 70%;
    height: auto;
    bottom: -20px;
    left: -33px;
    background: #fff;
    padding: 20px 20px 30px;
    color: #0a72ad;
}
.dm-text strong {
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
    margin-top: 10px;
}

.left-menu__wrapper {
    position: fixed;
    width: 40%;
    height: 100%;
    z-index: 500;
    left: -41%;
    transition: all .3s;
    transition-delay: .2s;
    overflow-y: auto;
}
.left-menu__bg {
    background: rgba(255, 255, 255, .975);
    width: 100%;
    height: 120vh;
    min-height: 1080px;
    position: absolute;
}
.left-menu__bg:after {
    content: '';
}
.left-menu__wrapper.is-shown {
    left: 0;
}
.left-memu__inner {
    position: relative;
    margin-top: 120px;
}
.left-menu-container {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 0 114px;
}
.left-menu-point {
    margin-bottom: 4px;
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(30px);
}
.is-shown .left-menu-point {
    opacity: 1;
    transform: translateY(0);
}
.is-shown .left-menu-point:nth-child(1) {
    transition-delay: .45s;
}
.is-shown .left-menu-point:nth-child(2) {
    transition-delay: .55s;
}
.is-shown .left-menu-point:nth-child(3) {
    transition-delay: .65s;
}
.is-shown .left-menu-point:nth-child(4) {
    transition-delay: .75s;
}
.is-shown .left-menu-point:nth-child(5) {
    transition-delay: .85s;
}
.is-shown .left-menu-point:nth-child(6) {
    transition-delay: .95s;
}
.is-shown .left-menu-point:nth-child(7) {
    transition-delay: 1.05s;
}
.is-shown .left-menu-point:nth-child(8) {
    transition-delay: 1.15s;
}
.is-shown .left-menu-point:nth-child(9) {
    transition-delay: 1.25s;
}
.is-shown .left-menu-point:nth-child(10) {
    transition-delay: 1.35s;
}
.left-menu-point a {
    position: relative;
    color: #3c3c3c;
    font-size: 19px;
    font-weight: 500;
}
.left-menu-point a:hover {
    color: #1283c5;
    text-decoration: none;
}
.left-menu-point a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.left-menu-point a:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
}
.left-menu-container-2 {
    position: relative;
    list-style: none;
    margin: 4px 0 8px;
    padding: 0 35px;
}
.left-menu-container-2 .left-menu-point{
    margin-bottom: 3px;
}
.left-menu-container-2 .left-menu-point a {
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 300;
}

.dmi-logo-link {
    position: relative;
    display: inline-block;
    z-index: 550;
    height: 42px;
    width: 152px;
    background-image: url(images/header/logo.png);
    background-size: cover;
    line-height: 100px;
    overflow: hidden;
    transition: all .3s;
}
.dmi-logo-link.black {
    background-image: url(images/header/logo-black.png);
}

.hot-phones__wrapper {
    position: relative;
    margin: 40px;
    padding: 30px 0 0 0;
    border-top: solid 1px #b1b1b1;
}
.hot-phones-inner {
    position: relative;
    margin: 15px 0 0 71px;
    transition: all .3s;
    opacity: 0;
    transform: translateY(-35px);
}
.is-shown .hot-phones-inner {
    opacity: 1;
    transform: translateY(0);
}
.is-shown .hot-phones-inner:nth-child(1) {
    transition-delay: .75s;
}
.is-shown .hot-phones-inner:nth-child(2) {
    transition-delay: .95s;
}
.is-shown .hot-phones-inner:nth-child(3) {
    transition-delay: 1.15s;
}
.is-shown .hot-phones-inner:nth-child(4) {
    transition-delay: 1.35s;
}
.is-shown .hot-phones-inner:nth-child(5) {
    transition-delay: 1.55s;
}
.is-shown .hot-phones-inner:nth-child(6) {
    transition-delay: 1.65s;
}
.is-shown .hot-phones-inner:nth-child(7) {
    transition-delay: 1.75s;
}

.hot-phones-title {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 0 4px;
    font-size: 12px;
    color: #000;
    font-weight: 500;
}
.hot-phoes-phone {
    position: relative;
    display: block;
}
.hot-phoes-phone a {
    font-weight: 600;
    font-size: 27px;
    color: #3c3c3c;
    margin: 0 0 0 -14px;
    padding: 0;
    line-height: 25px;
}
.hot-phoes-phone a:hover {
    color: #0283cc;
}

.orderModal .hot-phones-inner {
    position: relative;
    margin: 15px 0 0 0px;
    transition: all .3s;
    opacity: 0;
    transform: translateY(-35px);
}
.orderModal.show .hot-phones-inner {
    opacity: 1;
    transform: translateY(0);
}
.orderModal.show .hot-phones-inner:nth-child(1) {
    transition-delay: .75s;
}
.orderModal.show .hot-phones-inner:nth-child(2) {
    transition-delay: .95s;
}
.orderModal.show .hot-phones-inner:nth-child(3) {
    transition-delay: 1.15s;
}
.orderModal.show .hot-phones-inner:nth-child(4) {
    transition-delay: 1.35s;
}
.orderModal.show .hot-phones-inner:nth-child(5) {
    transition-delay: 1.55s;
}

.index-about__wrapper {
    position: relative;
    background: #f5f5f5;
    min-height: 1000px;
    overflow: hidden;
}
.page-content__wrapper {
    position: relative;
    background: #f5f5f5;
    min-height: 250px;
    overflow: hidden;
    padding-bottom: 100px;
}
.index-about__bg {
    position: absolute;
    top: 0;
    right: -150px;
    width: 100%;
    height: 100%;
    background: #f5f5f5 url(images/bg/honda-sign-outline.png) top right no-repeat;
}
.motorbike__bg {
    background: #f5f5f5 url(images/bg/motorbike-sign-outline.png) top right no-repeat;
}
.hotlinks__wrapper {
    position: relative;
    margin-top: 40px;
}
.hotlinks-one {
    position: relative;
    background-color: #fff;
    background-image: url(images/bg/honda-sign-outline.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 160%;
    height: 170px;
    text-align: center;
    box-shadow: 0 8px 60px -15px #3c3c3c;
    transition: all .3s;
}
.hotlinks-one:hover {
    box-shadow: 0 10px 70px -5px #3c3c3c;
}
.hotlinks__col:nth-child(1) .hotlinks-one {
    background-position: 20px 0;
}
.hotlinks__col:nth-child(2) .hotlinks-one {
    background-position: 0 0;
}
.hotlinks__col:nth-child(3) .hotlinks-one {
    background-position: -40px 0;
}
.hotlinks__col:nth-child(4) .hotlinks-one {
    background-position: -80px 0;
}
.hotlinks__col:nth-child(5) .hotlinks-one {
    background-position: -120px 0;
}
.hotlinks-icon {
    position: relative;
    display: block;
    padding: 15px 0 0px;
}
.hotlinks-icon img {
    transform: scale(.8);
    transition: all .3s;
}
.hotlinks-one:hover .hotlinks-icon img {
    transform: scale(1);
}
.hotlinks-link {
    position: relative;
    display: block;
    margin: 5px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 18px;
    text-decoration: underline;
}
.hotlinks__col:nth-child(4) .hotlinks-link {
    font-size: 11px;
}

.index-about__container {
    position: relative;
    margin-top: -200px;
    padding: 30px 50px;
    background: #fff;
}
.index-about__container h1 {
    font-weight: 600;
    font-size: 35px;
    margin: 10px 0 20px;
}
.index-about__container p {
    font-size: 16px;
}
.about-digits__wrapper {
    margin: 70px 0;
}
.about-digits {
    margin-right: 60px;
}
.about-digits strong {
    font-size: 58px;
    color: #0283cc;
    font-weight: 700;
}

.feedback__section {
    position: relative;
    background-image: url(images/bg/feedback1.jpg);
    background-position: top right;
    background-size: cover;
}
.feedback__inner {
    padding-top: 100px;
    padding-bottom: 80px;
}
.feedback__inner .feedback-text {
    color: #fff;
    font-size: 33px;
    font-weight: 300;
    line-height: 133%;
    /*padding-right: 50px;*/
}
.big-services__section a:hover{
    color: #fff!important;
}
.big-service-link {
    cursor: pointer;
}
.big-service-1__wrapper {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.big-service-1__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-11.jpg);
    background-size: cover;
    background-position: center;
    transition: all .3s;
    transform: scale(1);
}
.big-service-1__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-2__wrapper {
    position: relative;
    overflow: hidden;
    min-height: 340px;
}
.big-service-2__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-2.jpg);
    background-size: cover;
    background-position: bottom right;
    transition: all .3s;
    transform: scale(1);
}
.big-service-2__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-3__wrapper {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.big-service-3__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-3.jpg);
    background-size: cover;
    background-position: bottom right;
    transition: all .3s;
    transform: scale(1);
}
.big-service-3__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-4__wrapper {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.big-service-4__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-41.jpg);
    background-size: cover;
    background-position: center;
    transition: all .3s;
    transform: scale(1);
}
.big-service-4__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-5__wrapper {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.big-service-5__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-6.jpg);
    background-size: cover;
    background-position: bottom right;
    transition: all .3s;
    transform: scale(1);
}
.big-service-5__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-6__wrapper {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.big-service-6__wrapper:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-image: url(images/bg/service-71.jpg);
    background-size: cover;
    background-position: bottom center;
    transition: all .3s;
    transform: scale(1);
}
.big-service-6__wrapper:hover:before {
    transform: scale(1.1);
}
.big-service-1__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 25px;
}
.big-service-1__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 124, 194, .9);
}
.bs-icon {
    position: relative;
    margin-bottom: 7px;
}
.bs-title {
    position: relative;
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 5px;
}

.big-service-2__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 25px;
    margin-top: 170px;
}
.big-service-2__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 8, 2, .9);
}
.big-service-3__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 27px 25px;
}
.big-service-3__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(159, 165, 168, .9);
}
.big-service-4__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 25px;
    margin-top: 170px;
}
.big-service-4__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 8, 2, .9);
}
.big-service-5__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 25px;
    margin-top: 170px;
}
.big-service-5__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}
.big-service-6__inner {
    position: relative;
    min-height: 170px;
    text-align: center;
    padding: 25px;
    margin-top: 170px;
}
.big-service-6__inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}

.last-news__section {
    padding: 70px 0;
    background: #f5f5f5;
}
.last-news-title__wrapper {
    background: #e2e2e2;
    min-height: 30px;
}
.last-news-title {
    font-size: 38px;
    font-weight: 800;
    padding: 30px 30px;
}

.last-news__inner {
    margin: 40px 0;
}
.one-news__wrapper {
    position: relative;
}
.on-image__wrapper {
    position: absolute;
    width: 240px;
    height: 150px;
    overflow: hidden;
}
.on-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    transition: all .3s;
    transform: scale(1);
}
.one-news__wrapper:hover .on-image {
    transform: scale(1.1);
}
.on-date {
    position: relative;
    margin-left: 280px;
}
.digit {
    font-size: 30px;
    font-weight: 300;
    padding-right: 5px;
}
.digit-s {
    font-size: 26px;
    font-weight: 300;
    padding-right: 5px;
}
.on-date .digit {
    font-size: 50px;
}
.month {
    font-size: 18px;
    font-weight: 300;
}
.on-date .month {
    font-size: 23px;
}
.on-content {
    position: relative;
    padding: 25px 0 0 30px;
    background: #f5f5f5;
    margin: 55px 0 0 110px;
}
.on-title {
    margin-bottom: 15px;
}
.on-title a {
    position: relative;
    font-weight: 600;
    font-size: 21px;
    line-height: 23px;
}
.on-text {
    position: relative;
    font-size: 16px;
    padding-bottom: 20px;
}

.main-news .on-image__wrapper {
    width: 350px;
    height: 195px;
}

.main-news .on-content {
    margin: 50px 0 0 200px;
}
.main-news .on-date {
    margin-left: 380px;
}
.main-news .on-title a {
    font-size: 30px;
}
.main-news .on-text {
    font-size: 17px;
}
.main-news .on-content,
.articles-content .on-content{
    background: transparent!important;
}
.main-news .on-content:before,
.articles-content .on-content:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100px;
    background: #f5f5f5;
}

.main-news.main-action .on-image__wrapper {
    width: 50%;
    height: 260px;
}
.main-news.main-action .on-date{
    margin-left: 55%;
}
.main-news.main-action .on-content:before {
    width: 100%;
    height: 160px;
}


.list-news .one-news__wrapper {
    margin: 20px 0 100px;
}
.list-news .one-news__wrapper.news-list-even {
    margin: 100px 0 20px;
}
.last-news__section .list-news .one-news__wrapper {
    margin: 50px 0 0;
    width: 100%;
}
.list-news .on-date .digit {
    font-size: 25px;
}
.list-news .on-date .month {
    font-size: 20px;
}
.list-news .on-title a {
    font-size: 20px;
}
.last-news__section .list-news .on-title a {
    font-size: 18px;
}
.list-news .on-text {
    font-size: 12px;
}

.list-actions .one-news__wrapper {
    margin: 20px 0 100px;
}
.list-actions .one-news__wrapper.news-list-even {
    margin: 100px 0 20px;
}
.last-news__section .list-actions .one-news__wrapper {
    margin: 50px 0 0;
}
.list-actions .on-date {
    padding: 10px 0 20px;
    margin-left: 144px;
}
.list-actions .on-date .digit {
    font-size: 25px;
    color: #fff;
}
.list-actions .on-date .month {
    font-size: 20px;
    color: #fff;
}
.list-actions .on-title a {
    font-size: 20px;
}
.last-news__section .list-actions .on-title a {
    font-size: 18px;
}
.list-actions .on-text {
    font-size: 12px;
}
.list-actions .on-image__wrapper{
    position: absolute;
    width: 75%;
    height: 184px;
    overflow: hidden;
}

.articles-content .on-content, .last-news__section .on-content{
    margin: 15px 0 0 115px;
}

.articles-list {
    margin: 20px 0;
}
.articles-list .on-image__wrapper{
    width: 50%;
    height: 225px;
}
.articles-list .on-date{
    margin-left: 363px;
    padding-top: 50px;
    color: #fff;
}
.articles-list .on-content{
    padding: 25px 0 0 30px;
    background: #f5f5f5;
    margin: 15px 0 0 220px;
}
.articles-list .on-date .digit {
    font-size: 30px;
}
.articles-list .on-date .month {
    font-size: 19px;
}

.articles-list-even .on-image__wrapper{
    right: 0;
}
.articles-list-even .on-date{
    margin-right: 380px;
    text-align: right;
}
.articles-list-even .on-content{
    padding: 25px 30px 0 0;
    background: #f5f5f5;
    margin: 15px 200px 0 1px;
    text-align: right;
}
.articles-list-even .morelink{
    margin-right: 50px;
}

.list-shareholders .on-date{
    margin-left: 0;
}
.list-shareholders .on-date .digit{
    font-size: 20px;
}
.list-shareholders .on-date .month {
    font-size: 16px;
}
.list-shareholders .on-content{
    padding: 25px 0 0;
    margin: 0 0 80px;
}
.list-shareholders {

}
.list-shareholders {

}

.fla_Multi_GridCollection_Item_Inner {
    cursor: url(images/icons/icon-enlarge.png), auto!important;
}
.fla_Multi_ItemPage img {
    cursor: url(images/icons/icon-drag.png), auto!important;
}

.actions__section {
    padding: 50px 0;
}
.one-action__wrapper {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 8px 60px -15px #3c3c3c;
    transition: all .3s;
}
.one-action__wrapper:hover {
    box-shadow: 0 10px 80px -5px #3c3c3c;
}
.one-action-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center center;
    transition: all .3s;
    transform: scale(1);
}
.one-action__wrapper:hover .one-action-image {
    transform: scale(1.1);
}
.one-action-place {
    position: relative;
    display: inline-block;
    margin-top: 150px;
    padding-top: 34px;
    width: 100%;
    height: 150px;
    background-color: #737b7f;
    text-align: center;
}
.one-action-place .morelink {
    opacity: 0;
    transform: translateY(30px);
    transition: all .3s;
}
.oa-title {
    margin-bottom: 17px;
    padding: 0 10px;
    transition: all .3s;
    transform: translateY(20px);
    transition-delay: .1s;
}
.oa-title a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 21px;
}
.one-action__wrapper:hover .oa-title {
    transform: translateY(0);
}
.one-action__wrapper:hover .one-action-place .morelink {
    opacity: 1;
    transform: translateY(0);
}

.one-action-place:hover .oa-title a {
    color: #2d2d2d;
}

.questions__section {
    position: relative;
    background: url(images/bg/questuins.jpg);
    background-size: cover;
}
.questions__section h3 {
    font-size: 45px; font-weight: 800; color: #fff;
}
.questions__section .feedback-text {
    color: #fff;
    font-size: 21px;
    margin: 30px 0;
    font-weight: 300;
    line-height: 24px;
    padding-right: 50px;
}
.questions__section .questions__wrapper {
    padding: 90px 0;
}

.footer {
    position: relative;
    background: url(images/bg/footer.jpg);
    background-size: cover;
    min-height: 350px;
    padding: 50px 0;
}

.footer-menu__wrapper {

}
.footer-menu {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-left: 0;
    padding-left: 0;
}
.footer-menu-one {
    border-right: solid 1px rgba(255, 255, 255, 0.46);
}
.footer-menu-one:last-child {
    border-right: 0;
}
.footer-menu-one a {
    padding: 0px 14px;
    color: #fff;
    font-size: 12px;
}
.footer-menu-one a:hover {
    color: #000;
}
.footer-logo__wrapper {
    margin-bottom: 50px
}
.footer-address {
    font-size: 19px;
    font-weight: 300;
    color: #fff;
}
.footer-address a {
    color: #fff;
}
.social-icons__wrapper {

}
.social-icons__wrapper a {
    color: #fff;
    font-size: 30px;
    padding-right: 10px;
}
.social-icons__wrapper a:hover {
    color: #000;
}
.footer-action-menu {
    position: relative;
    list-style: none;
    margin-top: 30px;
}
.footer-am-one {
    margin: 0 0 5px;
}
.footer-am-one a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.footer-action-menu .hot-phones-inner {
    opacity: 1;
    transform: none;
    margin: 0 0 20px;
}
.footer-action-menu .hot-phones-title, .footer-action-menu .hot-phoes-phone a {
    color: #fff;
}
.footer-action-menu a:hover, .footer-action-menu .hot-phoes-phone a:hover {
    color: #000;
}
.sub-footer {
    background: #292b2d;
    color: #c3c3c3;
    font-size: 11px;
    font-weight: 300;
}
.sub-footer a {
    display: inline-block;
    padding-right: 20px;
    font-size: 13px;
    font-weight: 300;
    color: #c3c3c3;
}
.sub-footer p {
    margin: 20px 0;
    color: #c3c3c3;
}
.sport-gallery__wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.sg-one {
    position: relative;
    height: 440px;
}
.sg-one__inner {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    transition: all .3s;
    padding: 10px 50px;
}
.sg-one-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.sg-one-content {
    position: relative;
    width: 100%;
    opacity: 0;
}
.slick-current .sg-one__inner {
    top: 10%;
    left: -20%;
    width: 140%;
    height: 80%;
    z-index: 1000;
    box-shadow: 0 5px 60px 0 #3c3c3c;
}
.sg-one-link {
    position: absolute;
    bottom: -50px;
    right: 125px;
    opacity: 0;
    transition: all .3s;
    transition-delay: .1s;
}
.slick-current .sg-one-content {
    opacity: 1;
}
.slick-current .sg-one-link {
    opacity: 1;
    bottom: 20px;
}
.sg-one-date {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}
.sg-one-date .days {
    font-size: 35px;
}
.sg-one-title {
    font-weight: 300;
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    margin: 50px 0 20px;
    opacity: 0;
    transition: all .3s;
    transition-delay: .3s;
    transform: translateY(-20px);
}
.sg-one-title a {
    color: #fff;
}
.sg-one-text {
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    opacity: 0;
    transition: all .3s;
    transition-delay: .5s;
    transform: translateY(-20px);
}
.slick-current .sg-one-title, .slick-current .sg-one-text {
    opacity: 1;
    transform: translateY(0);
}
.sg-arrow {
    position: absolute;
    bottom: 115px;
    width: 80px;
    height: 40px;
    z-index: 1;
    cursor: pointer;
}
.sg-arrow-left {
    left: 115px;
}
.sg-arrow-right {
    left: auto;
    right: 115px;
}
.sg-arrow span {
    position: absolute;
    height: 1px;
    width: 60px;
    background: #fff;
    top: 20px;
    left: 10px;
}
.sg-arrow span:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 25px;
    background: #fff;
    top: 8px;
    left: -6px;
    transform: rotate(45deg);
}
.sg-arrow span:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 25px;
    background: #fff;
    top: -8px;
    left: -6px;
    transform: rotate(-45deg);
}
.sg-arrow.black span, .sg-arrow.black span:before, .sg-arrow.black span:after {
    background: #000;
}
.sg-arrow-left span {
    transform: translateX(0);
    transition: all .3s;
}
.sg-arrow-right span{
    transform: rotate(180deg) translateX(0);
    transition: all .3s;
}
.sg-arrow-left:hover span {
    transform: translateX(-20px);
}
.sg-arrow-right:hover span {
    transform: rotate(180deg) translateX(-20px);
}

.mapa {
    width: 100%;
    height: 600px;
}

.page-heading-title {
    margin: 41px 20px;
}
.page-heading-title h1 {
    color: #fff;
    font-weight: 900;
    text-shadow: 0 0 50px #000;
}
.page-submenu-div {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}
.page-submenu__wrapper {
    padding: 25px 25px;
}
.page-submenu__inner {

}
.ps-one {
    padding: 16px 12px;
    margin: 0;
    font-weight: 500;
    color: #fff;
}
.ps-one a {
    position: relative;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
}
.ps-one a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.ps-one a:hover:after {
    width: 100%;
}
.ps-one.active {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-top: 18px;
}
.ps-one.active a {
    color: #fff;
    font-weight: 500;
}
.ps-one.active a:after {
    width: 100%;
}
.model-one {
    padding: 16px 18px;
    max-width: 170px;
    line-height: 120%;
}
.model-one.active {
    background: #ececec;
    color: #000;
}
.model-one a {
    font-size: 17px;
}
.model-one.active a {
    color: #000;
}
.model-one.active a:after {
    display: none;
}

.history-gallery__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    background-image: url("images/bg/history.jpg");
    background-size: cover;
    background-position: top left;
}
.history-gallery {
    /*min-height: 650px;*/
}
.hg-image__wrapper {
    box-shadow: 0 8px 60px -4px #3c3c3c;
}
.hg-one {
    height: 465px;
    margin-top: 25px;
}
.hg-one .row {
    margin-right: 20px;
}
.history-gallery-nav {
    padding-top: 80px;
    min-height: 100px;
}
.hg-nav-one {
    position: relative;
    height: 100px;
    font-size: 41px;
    line-height: 60px;
    font-weight: 300;
    text-align: center;
    transition: all .5s;
    cursor: pointer;
}
.hg-nav-one:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: #000;
    top: 30px;
    left: 0;
    transition: all .3s;
}
.hg-nav-one:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: #000;
    top: 30px;
    right: 0;
    transition: all .3s;
}
.hg-nav-one:last-child:after {
    display: none;
}
.hg-nav-one.slick-current {
    font-size: 80px;
    color: #0283cc;
    line-height: 90px;
}
.hg-nav-one.slick-current:before {
    width: 0;
}
.hg-nav-one.slick-current:after {
    width: 0;
}

.global-menu__bg {
    z-index: 800;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    z-index: 0;
    transition: all .3s
}
.global-menu__bg.show {
    position: fixed;
    opacity: .6;
    z-index: 250;
}
.global-menu__bg.show-leftmenu {
    position: fixed;
    opacity: .6;
    z-index: 480;
}
.header-phoneblock__wrapper {
    position: relative;
    z-index: 550;
}
.loader__wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #fff;
    align-items: center;
    text-align: center;
    display: flex;
    transition: all .3s;
}
.loader__wrapper.hidden {
    opacity: 0;
}
.loader__inner {
    position: relative;
    width: 100%;
}
.loader__inner img {
    width: 100px;
    /*margin-left: 50px;*/
}
.loader__inner:after {
    content: '';
    position: relative;
    text-align: center;
    height: 1px;
    width: 50%;
    top: 50px;
}
.loader-animation__wrapper {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 70px auto;
}
.loader-animation {
    height: 100%;
    display: flex;
}
.loader-animation div {
    background: #000;
    -webkit-animation: go 3s ease;
    animation: go 3s ease ;
    width: 100%;
    height: 1px;
    transform:translateX(-100%);
}

@-webkit-keyframes go {
    1% {
        transform:translateX(-100%);
    }
    50% {
        transform:translateX(-70%);
    }
    100% {
        transform:translateX(0);
    }
}

@keyframes go {
    1% {
        transform:translateX(-100%);
    }
    50% {
        transform:translateX(-70%);
    }
    100% {
        transform:translateX(0);
    }
}

.language-top__dropdown .language-top-inner {
    padding: 20px 0;
    transition-delay: .2s;
    margin: 0;
}
.language-top__dropdown.show .language-top-inner {
    opacity: 1;
    transform: translateY(0);
}
.language-chooser {
    list-style: none;
    margin: 0;
    padding: 0;
}
.language-chooser li {
    padding: 5px 30px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all .2s;
    transition-delay: .2s;
}
.show .language-chooser li {
    transform: translateY(0);
    opacity: 1;
}
.language-chooser li.active {
    display: none;
}
.language-chooser li a {
    position: relative;
    font-size: 15px;
    color: #3c3c3c;
    text-decoration: none;
}
.language-chooser li a:hover {
    color: #1283c5;
}
.language-chooser li a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.language-chooser li a:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
}

.subscribe-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a4b6f;
}
.subscribe-text {
    font-size: 14px;
    margin-bottom: 50px;
}

.fla_cic_header {
    display: none;
}
.flagallery.cicerone_skin {
    margin: 30px -50px 30px -150px;
    padding: 30px 50px 20px;
    background: #efefef;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: .25rem;
    font-size: 12px;
}
.breadcrumb-item a {
    position: relative;
    display: inline;
    font-size: 12px;
}
.breadcrumb-item a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.breadcrumb-item a:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
}
.breadcrumbs__separator {
    padding: 0 9px;
}

.card {
    margin: 0;
    border: 0;
    background: #fff;
    padding: 20px 20px;
    margin-bottom: 14px;
    box-shadow: 0 3px 20px 0px #f0f0f0;
    transition: all .3s;
    z-index: 100;
}
.card:hover {
    box-shadow: 0 7px 45px 2px #c1c1c1;
    z-index: 150;
}
.card-header {
    position: relative;
    padding: 0;
    margin: 0;
    background: 0;
    border: 0;
    padding-left: 19px;
}
.card-header a {
    border-bottom: solid 1px #fff;
}
.card-header a.collapsed {
    border-bottom: dashed 1px #0283cb;
}
.card-body {
    margin-bottom: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .3s;
    transition-delay: .1s;
}
.show .card-body {
    opacity: 1;
    transform: translateY(0px);
}

.t-cell-expand {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 1px;
    right: -30px;
    margin-top: -7px;
    transform: rotate(180deg);
    margin-right: -5px;
    transition: all .3s;
}
.collapsed .t-cell-expand {
    transform: rotate(0deg);
}
.t-cell-expand:before {
    content: '';
    width: 2px;
    height: 10px;
    background: #3c3c3c;
    position: absolute;
    top: 0;
    left: 1px;
    transform: rotate(-45deg);
    margin-top: 5px;
    margin-left: 4px;
}
.t-cell-expand:after {
    content: '';
    width: 2px;
    height: 10px;
    background: #3c3c3c;
    position: absolute;
    top: 0;
    left: 2px;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-top: 5px;
}

.one-specs-wrapper {
    margin: 20px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 3px 20px 0px #f0f0f0;
    transition: all .3s;
    z-index: 100;
    min-height: 160px;
}
.one-specs-wrapper:hover {
    box-shadow: 0 7px 45px 2px #c1c1c1;
    z-index: 150;
}

.on-image-specs__wrapper {
    position: absolute;
    width: 150px;
    height: 100px;
    overflow: hidden;
    margin-top: -20px;
}
.on-image-specs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    transition: all .3s;
    transform: scale(1);
}
.compare-list__wrapper .on-image-specs__wrapper{
    width: 90px;
    height: 60px;
    margin-top: -50px;
}
.compare-title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}


.one-specs-wrapper:hover .on-image-specs {
    transform: scale(1.1);
}
.on-specs-description {
    font-size: 14px;
}
.on-specs-description p{
    font-size: 14px!important;
    margin: 0;
    padding: 0;
}
.on-specs-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 23px;
    display: block;
    margin: 10px 0;
}
.one-specs-wrapper .model-list-price {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    bottom: 0;
    right: 0;
}
.one-specs-wrapper .model-list-price i {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    display: inline-block;
    position: relative;
    top: -10px;
}
.one-specs-wrapper .model-list-price span {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    display: inline-block;
    position: relative;
    top: -10px;
}
.one-specs-wrapper .model-list-price.stroke {
    font-size: 18px;
    color: #ddd;
    text-decoration: line-through;
    line-height: 15px;
}
.one-specs-wrapper .model-list-price.stroke span {
    font-size: 13px;
    color: #ddd;
    text-decoration: line-through;
}
.one-specs-wrapper .model-list-price.action {
    color: #c41108;
}
.one-specs-wrapper .model-list-price.action span {
    color: #c41108;
}
.detailed-specs__wrapper {
    margin: 50px;
    display: none;
}
.detailed-specs__wrapper.opened {
    display: block;
}
.detailed-specs__inner {
    opacity: 0;
    transform: translateY(-30px);
    transition: all .3s;
}
.detailed-specs__inner.opened {
    opacity: 1;
    transform: translateY(0);
}
.list-specs-group {
    padding: 16px;
    background: #efefef;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}
.list-specs-item {
    padding: 10px 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 11px;
    border-bottom: solid 1px #e0e0e0;
}
.list-specs-item .col-2 {
    word-break: break-word;
    -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; /* пока поддерживает только Firefox */
    text-align: justify;
}
.list-specs-item-diff {
    color: #ea1c2f!important;
}
.show-specs {
    font-size: 11px;
    text-decoration: none;
    border-bottom: dashed 1px;
}
.to-compare__wrapper {
    font-size: 12px;
}

.model-color__wrapper {
    margin: 50px;
}
.model-color-slider {
    width: 100%;
}
.one-color-slide {
    height: 550px;
    background-size: cover;
    text-align: center;
    background-position: center;
}
.model-color-slider-nav {
    padding: 0;
    position: relative;
    margin-top: -25px;
}
.one-color-slider-nav {
    position: relative;
    display: inline-flex;
    height: 50px;
    width: 80px;
    background-position: center;
    background-position-y: 47%;
    cursor: pointer;
    margin: 0 9px;
    background-size: 330%;
    transition: all .3s;
    transform: scale(1);
    box-shadow: 0 5px 30px;
}
.one-color-slider-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 50px;
}
.one-color-slider-nav.selected{
    transform: scale(1.2);
    box-shadow: 0 5px 80px;
    z-index: 10;
}
.one-color-slider-nav-text {
    color: #494f54;
    display: inline-block;
    margin: 0 auto;
    font-weight: 800;
    text-align: center;
    font-size: 15px;
    background: #fff9;
    padding: 22px 100px;
    margin-top: -3px;
    text-transform: uppercase;
}
.bg-white-color-wrapper {
    height: 550px;
    position: absolute;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    background: #fff;
}

.full-width {
    position: relative;
    padding: 10px 0;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    height: 600px;
}

.menu-bodyrepair__image {
    width: 65%;
    position: absolute;
    right: 0;
}
.menu-bodyrepair__wrapper {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30px 15px 0 0;
    margin-top: 62px;
    margin-right: 38%;
    font-size: 14px;
    margin-left: -35px;
}
.menu-bodyrepair__wrapper blockquote {
    position: absolute;
    display: block;
    bottom: -20px;
    right: -56%;
    width: 54%;
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #0a72ad;
}
.menu-bodyrepair-rootlink__wrapper {
    position: absolute;
    width: 42%;
    z-index: 10;
    bottom: 17px;
    left: -48%;
}


.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.full-width.video {
    height:600px;
    overflow: hidden;
    display: inline-block;
    margin-top: 80px;
    margin-bottom: 60px;
}

.full-width.video video{
    width: 100%;
    height: 550px;
    object-fit: cover;
    z-index: -100;
    right: 0;
    bottom: 0;
    background-size: cover;
    overflow: hidden;
}

.subpages-list__wrapper {
    margin: 0 0 75px;
}
.subpages-list__wrapper .on-content{
    margin-top: 0;
    position: relative;
    display: inline-block;
    top: 112px;
    margin-left: 100px;
}
.subpages-list__wrapper .on-content:before {
    width: 280px;
}
.subpages-list__wrapper .one-news__wrapper {
    margin-bottom: 140px;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
}

.option-model {

}

.serv_order__inner .model-list-badge-action {
    bottom: auto;
    top: 0;
    left: -5px;
}
.sub-service-form__inner .form-wrapper,
.sub-service-form__inner .form-result{
    color: #494f54;
}



.page-text__wrapper {

}

.the-content.page-text {
    position: relative;
}
.the-content.page-text p {
    font-size: 18px;
}
.the-content.page-text blockquote {
    margin-left: 50px;
    font-size: 22px;
    font-weight: 300;
    margin-top: 50px;
}
.the-content.page-text .text-big {
    font-size: 22px;
    font-weight: 700;
}
.the-content.page-text .text-lightbig {
    font-size: 22px;
    font-weight: 300;
}

.the-content.page-text.news-content blockquote {
    font-weight: 300;
    margin: 30px -50px 30px -150px;
    padding: 30px 50px 20px;
    background: #efefef;
}
.the-content.page-text.news-content blockquote p {
    font-size: 22px!important;
    color: #0283cc;
}
.the-content.page-text img.alignnone {
    margin: 20px 40px 20px -100px;
    padding: 30px;
    background: #efefef;
}
.the-content.page-text img.alignleft {
    float: left;
    margin: 20px 40px 20px -100px;
    padding: 30px;
    background: #efefef;
}
.the-content.page-text img.alignright {
    float: right;
    margin: 20px 40px 20px 100px;
    padding: 30px;
    background: #efefef;
}
.the-content.page-text a {
    text-decoration: none;
    position: relative !important;
    display: inline;
}
.the-content.page-text a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 20px;
    transition: all .3s;
}
.the-content.page-text a:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #1283c5;
    height: 1px;
    width: 100%;
}
.the-content.page-text.model-content blockquote  {
    font-weight: 300;
    margin: 30px 0 30px 50px;
    padding: 30px 50px 20px;
    background: #fff;
}
.the-content.page-text.model-content blockquote p {
    font-size: 20px!important;
    color: #0283cc;
}
.the-content.page-text.model-content img.alignleft {
    padding: 0;
}
.the-content.page-text h2 {
    font-size: 42px;
    font-weight: 300;
}
.the-content.page-text h3 {
    font-size: 35px;
    font-weight: 300;
}

.the-content.page-text.model-content img.alignnone {
    margin: 0;
    padding: 0;
    background: none;
}
.the-content.page-text.model-content img.alignleft {
    float: left;
    margin: 20px 40px 20px -12vw;
    padding: 0;
    background: none;
}
.the-content.page-text.model-content img.alignright {
    float: right;
    margin: 20px -12vw 20px 50px;
    padding: 0;
    background: none;
}
.the-content.page-text.model-content img.shaddow {
    box-shadow: 0 8px 43px 0 #888888;
}
.mt-n150 {
    margin-top: -150px;
}

.hot-links-menu__wrapper {
    position: fixed;
    /*top: 50%;*/
    bottom: 15%;
    right: 20px;
    text-align: center;
    background: #0d5e8e;
    z-index: 255;
    border-radius: 100px;
    padding: 15px 5px;
    opacity: 0.5;
    transform: scale(.9);
    transition: all .3s;
}
.hot-links-menu__wrapper:hover,
.hot-links-menu__wrapper.hover{
    opacity: 1;
    box-shadow: 0 4px 60px #777777;
    transform: scale(1);
}

.hot-links-menu-one {
    padding: 3px 5px;
}
.tooltip-inner {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    padding: 10px 20px;
    border-radius: 100px;
    max-width: 230px;
}
.hot-links-menu-one img {
    transform: scale(.8);
    transition: all .3s;
}
.hot-links-menu-one:hover img,
.hot-links-menu-one.hover img{
    transform: scale(1);
}

.nested__wrapper {
    position: relative;
    width: 100%;
    background: url(/wp-content/themes/dmi/images/bg/nested.jpg) bottom center;
}
.nested__inner {
    padding: 20px 15px;
}
.nested-link {
    color: #fff;
    font-size: 12px;
    display: block!important;
    padding-bottom: 10px;
    margin-left: 10px;
}
.nested-link:hover {
    color: #333;
}
.nested-link-parent {
    font-size: 17px;
    line-height: 125%;
    font-weight: 800;
    margin-top: 30px;
    margin-left: 0;
}
.nested-link-parent:first-child {
    margin-top: 0;
}
.nested-link-parts {
    position: relative;
    font-size: 17px;
    line-height: 125%;
    font-weight: 800;
    margin-left: 35px;
    transition: all .3s;
}
.nested-link-parts:after {
    position: absolute;
    top: 22px;
    left: 0;
    content: '';
    height: 1px;
    background: #fff;
    width: 10px;
    transition: all .3s;
}
.nested-link-parts:hover,
.nested-link-parts.selected {
    color: #fff;
    font-size: 20px;
}
.nested-link-parts:hover:after,
.nested-link-parts.selected:after {
    width: 70%;
    top: 24px;
}

.mailpoet_form {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
}
.the-content table {
    min-width: 75%;
}
.the-content table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.the-content table td p {
    font-size: 0.9rem!important;
}
.alert__wrapper {
    position: fixed;
    width: 100%;
    height: 80px;
    background: #fff;
    bottom: 0;
    overflow: hidden;
    z-index: 1000;
}
.alert_title {
    color: #fff;
    font-weight: 900;
    height: 100%;
    position: relative;
    padding-top: 20px;
    padding-right: 100px;
}
.alert_title:after {
    content: '';
    width: 200%;
    height: 300px;
    position: absolute;
    background: #FF9600;
    top: -140px;
    left: -390px;
    transform: rotate(21deg);
    z-index: -1;
}
.alert_text {
    color: #FF9600;
    font-size: 15px;
    padding-top: 20px;
}
.instabg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: transparent;
    transition: all 0.3s;
}
.instalink {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.instaicon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
}
.instatext {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    font-size: 10px;
    top:0;
    left: 0;
    color: #fff;
    opacity: 0;
    transition: all 0.3s;
}
.instawrap:hover .instabg {
    background-color: #000;
}
.instawrap:hover .instatext {
    opacity: 1;
}
.on-period {
    position: relative;
    margin-left: 350px;
    padding: 25px;
    width: 245px;
    background: #fff;
    background-image: linear-gradient(#4ea404, #347900);
    color: #fff;
}
.content-period {
    margin-top: 0!important;
}
.on-period-anonstext {
    position: absolute;
    top: 5px;
    left: 280px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    width: 100%;
    height: 100px;
    color: #ea1c2f;
}
#timeraction {
    position: absolute;
    top: 32px;
    left: 265px;
}
.timer-flipchart-card {
    box-shadow: 0 2px 12px -5px #000;
}
.action-infowindow__wrapper {
    position: fixed;
    width: 450px;
    height: 300px;
    background: #fff;
    bottom: 220px;
    left: -500px;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.5s;
}
.action-infowindow__wrapper.shown {
    left: 50px;
}
.action-infowindow__content {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#4ea404, #347900);
    color: #fff;
}
.action-infowindow__inner {
    position: relative;
    padding: 30px;
    width: 100%;
    height: 100%;
}
.action-infowindow-title {
    max-height: 110px;
    overflow: hidden;
}
.action-infowindow-title a {
    font-size: 25px;
    font-weight: 800;
    text-decoration: underline;
    color: #fff;
    line-height: 130%;
}
.action-infowindow-timer__wrapper {
    position: absolute;
    bottom: 15px;
}
.action-infowindow-text {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    padding-bottom: 6px;
}
.action-infowindow__content .morelink-inline {
    color: #fff;
    margin-top: 15px;
}
.action-infowindow__close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    -webkit-transition: opacity 300ms linear 450ms,-webkit-transform .3s ease-in-out;
    transition: opacity 300ms linear 450ms,transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
}
.action-infowindow__close:after {
    content: '';
    position: absolute;
    top:0;
    left: 15px;
    width: 3px;
    height:30px;
    background: #fff;
    transform: rotate(-45deg);
}
.action-infowindow__close:before {
    content: '';
    position: absolute;
    top:0;
    left: 15px;
    width: 3px;
    height:30px;
    background: #fff;
    transform: rotate(45deg);
}
.close-menu {
    /*background: url("images/close-w.png");*/
}
.action-infowindow__close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.actionlist-timer {
    position: relative;
    padding-top: 30px;
}
.actionlist-timer .on-period-anonstext {
    left: 15px!important;
}
.actionlist-timer .actionlist-timer__inner {
    width: 376px;
}


.model-list__inner.mini .model-list-price {
    background-color: #fff;
    padding: 3px;
}

.card.acs {
    max-width: 47%;
    text-align: center;
    margin: 10px;
}
.card.acs .onemodel-code {
    color: #c82820;
    position: absolute;
    top: -3px;
    left: -5px;
    font-size: 16px;
    background: #f9f9f9;
    padding: 15px 6px 3px;
    border-radius: 6px;
    border-bottom: solid 6px;
    border-left: solid 6px;
    border-right: solid 6px;
    border-top: solid 30px;
    width: 100%;
}
.card.acs .onemodel-code-digit {
    font-size: 14px;
    color: #000;
}
.card.acs .onemodel-code:before {
    content: '';
    position: absolute;
    top: -19px;
    left: 1px;
    width: 54px;
    height: 7px;
    background-repeat: no-repeat;
    background: url(/wp-content/themes/dmi/images/logo.svg);
}
.card.acs .onemodel-code:after {
    content: 'GENUINE';
    position: absolute;
    font-size: 7px;
    color: #ffffff;
    top: -20px;
    left: 64px;
}
.card.acs .onemodel-code .onemodel-code-digit:after {
    content: 'DMI';
    font-family: 'Libre Barcode 128', cursive;
    color: #000;
    font-size: 19px;
    position: absolute;
    top: 0px;
    right: 5px;
}
.card.acs h5 {
    font-size: 17px;
}
.card.acs .part-info {
    position: relative;
    margin-top: 80px;
    text-align: left;
}
.card.acs .part-price-special__wrapper {
    font-size: 12px;
    margin-top: 6px;
    color: #c82820;
}
.part-price span,
.part-price-special span {
    font-size: 11px;
}
.part-price {
    font-size: 15px;
    text-decoration: line-through;
}
.part-price-special {
    font-size: 20px;
    color: #c82820
}
.to-order-part {
    display: inline-block;
    margin: 20px auto 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    padding: 7px 25px;
}

.info_warning {
    padding: 10px 20px;
    background: #c82820;
    color: #fff;
}

.viber-wrap {
    padding-left: 20px;
}
.viber {
    position: absolute;
    top: 0;
    left: 0;
}
.viber-menu {
    position: absolute;
    top: -3px;
    left: -48px;
}


.civil {
    width: 80%;
    left: -2000px;
    height: auto!important;
}
.civil .action-infowindow-title {
    font-weight: 700;
    font-size: 35px;
}

.civil .action-infowindow__inner p {
    font-size: 14px;
}

img.size-full {
   max-width: 100%;
   height: auto;
}


.honda_cars-template .hotlinks-one {
    padding: 50px;
}

@media (max-width: 1450px) {
    .blue-menu-point a {
        font-size: 13px;
    }
    .header-phone {
        font-size: 17px;
    }
}
@media (max-width: 1100px) {
    .blue-menu__inner {
        padding: 0!important;
    }
}

.w-100p {
    width: 100%;
}
.prices-part-header {
    font-size: 155%!important;
}
.card:hover .prices-part-header {
    color: #e61d31;
}

.ins-tab {
    padding: 35px 10px 10px;
    background: #fff;
    margin-bottom: 200px;
}
.ins-tab a {
    font-size: 11px;
}
.ins-tab a img {
    padding-bottom: 25px;
    transition: all .3s;
}
.ins-tab a:hover img {
    padding-bottom: 7px;
}
.ins-tab a:after {
    display: none;
}


.acura-logo__wrapper img {
    width: 80px;
}
.honda-logo__wrapper img {
    width: 120px;
}
.ra-logo__wrapper img {
    height: 45px;
}


.carsvn-img__wrapper {
    position: absolute;
    height: 255px;
    width: 100%;
    margin-left: -20px;
    margin-top: -20px;
    margin-right: -20px;
    transition: all .3s;
}
.carsvn-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.carsvn-content__wrapper {
    position: relative;
    margin-top: 235px;
}
.carsvn-title {
    color: #494f54;
    font-weight: 800;
    font-size: 25px;
    margin: 15px;
}
.carsvn-tbl {
    text-align: left;
}
.carsvn-subtitle {
    color: #5993cd;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
}
.carsvn-subtitle-content {
    color: #494f54;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
}
.carsvn-subtitle-price {
    color: #c41108;
    font-size: 32px;
    font-weight: 800;
}
.carsvn-subtitle-price span {
    font-size: 14px;
    font-weight: 400;
    padding-left: 5px;
}
.carsvn-subtitle-price .model-list-badge-action {
    bottom: 34px;
    right: 25px;
    left: auto;
}

.carsvn__wrapper:hover .carsvn-img__wrapper {
    height: 310px;
}
.carsvn__wrapper:hover .carsvn-title {
    color: #fff;
}
.carsvn__wrapper .to-order-part:after {
    content: none !important;
}

.car-in-stock-gallery {
    height: 100%;
    width: 100%;
}
.car-in-stock-gallery .slick-track {
    height: 100%;
}
.car-in-stock-gallery .slick-list {
    width: 100%;
    height: 100%;
}
.csg-arrow {
    position: absolute;
    top: 70%;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background: #fff;
    z-index: 10;
    opacity: .2;
    margin-top: -60px;
    cursor: pointer;
    transition: all .3s;
}
.csg-arrow-right {
    right: 15px;
}
.csg-arrow-left {
    left: 15px;
}
.csg-arrow-left:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(-225deg);
}
.csg-arrow-right:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-left: solid 2px #000;
    transform: rotate(-225deg);
}

.carsvn__wrapper:hover .csg-arrow {
    opacity: 1;
}

.ra-logo-mob-img {
    height: 27px;
    width: auto;
   }

.one_cell_wrapper {
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
}
.one_cell_wrapper.short {
    max-height: 760px;
}
.one_cell {
    width: 47%;
    float: left;
    margin: 0 5px;
    padding: 10px 20px;
}

.one_cell_opener {
    position: absolute;
    clear: left;
    height: 50px;
    bottom: -90px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    background: #fff;
}
.one_cell_opener a {
    display: inline-block;
    position: relative;
}
.one_cell_opener a:before {
    content: '';
    position: absolute;
    bottom: -7px;
    border-bottom: dashed 1px;
    height: 1px;
    width: 100%;
}
.specs_title {
    font-size: 25px;
    font-weight: 300;
    line-height: 53px;
}
.new-page-content {
    margin: 50px 20px;
}
.new-page-content h3 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}
.new-page-content ul {

}
.new-page-content li {
    color: #157cbd;
    list-style: none;
}
.the-content.page-text.model-content blockquote {
    position: absolute;
    width: 55%;
    right: 0;
    bottom: -55px;
    font-weight: 300;
    margin: 30px 0 30px 50px;
    padding: 30px 50px 20px;
    background: #f5f5f5;
}
.new-page-content.the-content.page-text.model-content blockquote p {
    font-size: 16px!important;
    color: #000;
}
.the-content.page-text.model-content blockquote ul {
    padding-left: 0;
}
.the-content.page-text.model-content blockquote li {
    font-size: 15px;
    list-style: none;
}
.specs-titles {
    width: 125%;
    position: relative;
}
.carsvn-subtitle.big {

}
.carsvn-subtitle-content.big {
    font-size: 18px;
    margin-bottom: 50px;
}
.specs-titles .carsvn-subtitle-price {
    font-size: 29px;
}
.sel-subtitle {
    font-size: 16px;
    background-color: #efefef;
    padding: 11px;
    cursor: pointer;
}
.sel-subtitle option {
    font-size: 15px;
}

.link_to_spec__wrapper {
    margin-top: 50px;
    margin-left: 50px;
}
.link_to_spec__image {
    height: 40px;
    display: inline-block;
}
.link_to_spec__text {
    display: inline-block;
    font-size: 14px;
    line-height: 115%;
    padding-top: 7px;
    border-bottom: dashed 1px;
}
.link_to_spec__imwrapper {
    text-align: center;
    width: 100%;
}
.mod_gallery-image {
    background-size: cover;
    height: 592px
}



@media (max-width: 1600px) {
    .acura-logo__wrapper img {
        width: 60px;
    }
    .honda-logo__wrapper img {
        width: 105px;
    }
    .ra-logo__wrapper img {
        height: 38px;
    }
}

@media (max-width: 1280px) {
    .ig-one-title__inner {
        margin: 100px 15% 0!important;
    }
    .header-phone {
        font-size: 14px;
    }
    .phone-descr {
        left: 20px;
        top: -6px;
        font-size: 7px;
    }
    .dmi-logo-link {
        height: 27px;
        width: 100px;
    }
    .index-gallery-slider-nav__wrapper {
        display: none;
    }
    .blue-menu-point a {
        font-size: 10px;
    }
    .ig-one-title {
        font-size: 35px;
    }
    .modal-order-right-wrapper {
        overflow-y: auto;
    }
    .hot-phones-title {
        font-size: 7px;
        padding: 0;
    }
    .hot-phoes-phone a {
        font-size: 16px;
    }
    .left-menu__wrapper {
        overflow-y: auto;
    }
    .blue-menu {
        height: 75px;
    }
    .acura-logo__wrapper img {
        width: 60px;
    }
    .honda-logo__wrapper img {
        width: 105px;
    }
    .feedback__inner .feedback-text {
        font-size: 21px;
    }
    .model-one a {
        font-size: 12px;
    }
    .page-heading-title h1 {
        font-size: 30px;
    }
    .the-content.page-text.model-content img.alignright {
        margin: 20px -20vw 20px 50px;
    }
    .the-content.page-text.model-content img.alignleft {
        margin: 20px 40px 20px -25vw;
    }
    .one-specs-wrapper {
        margin: 10px;
        padding: 10px;
    }
    .model-list-badge-action {
        padding: 6px 9px;
        font-size: 8px;
    }
    .model-list-price {
        font-size: 24px;
    }
    .model-list-price span {
        font-size: 11px;
    }
    .model-list-price i {
        font-size: 14px;
    }
    .model-list-image {
        height: 70%;
    }
    .about-digits strong {
        font-size: 48px;
    }
    .bs-title {
        font-size: 17px;
    }
    .last-news-title {
        font-size: 28px;
    }
    .on-text{
        font-size: 13px;
    }
    .last-news__section .list-news .on-title a {
        font-size: 16px;
    }
    .questions__section .feedback-text {
        font-size: 17px;
    }
    .left-menu__wrapper {
        position: fixed;
    }
    .model-list-title a {
        font-size: 22px;
    }
    .model-list__inner.mini .model-list-title a {
        font-size: 20px;
    }
    .model-more-text {
        font-size: 14px;
    }
}


@media (max-width: 1368px) and (max-height: 768px) {
    .ig-one-title__inner {
        margin: 0 15% 0!important;
    }
    .ig-one-nav {
        max-width: 90px;
        height: 50px;
    }
    .index-gallery-slider-nav__wrapper {
        bottom: 50px;
    }
}

@media (max-width: 436px) {

    .one_cell {
        width: auto;
    }
    .one_cell_opener {
        left: -20px;
        bottom: -65px;
        right: -20px;
        width: auto;
    }
    .specs_title {
        font-size: 18px;
    }
    .sel-subtitle {
        font-size: 14px;
    }
    .one-specs-wrapper {
        margin: 0;
        padding: 30px;
    }
    .carsvn-subtitle {
        font-size: 8px;
    }
    .carsvn-subtitle-content {
        font-size: 11px;
    }
    .link_to_spec__wrapper {
        margin-top: 50px;
        margin-left: 0;
        margin-bottom: 50px;
    }
    .mod_gallery-image {
        background-size: cover;
        height: 270px
    }
    .the-content.page-text.model-content blockquote {
        position: relative;
        width: auto;
    }
    .the-content.page-text p {
        font-size: 13px;
    }


    .civil .action-infowindow__inner p {
        font-size: 11px;
    }
    .card.acs .part-info {
        position: relative;
        margin-top: 10px;
        text-align: center;
    }
    .card.acs .onemodel-code {
        position: relative;
    }
    .card.acs {
        max-width: inherit;
        text-align: center;
        margin: 5px;
    }
    .ig-one-title {
        font-size: 30px;
        line-height: 125%;
    }
    .index-gallery-slider-nav__wrapper {
        bottom: 0;
    }
    .ig-one-title__inner {
        margin: 0!important;
    }
    .ig-one-nav {
        height: 50px;
    }
    .hamburger {
        padding: 15px 10px;
    }
    .hamburger-box {
        width: 38px;
    }
    .dmi-logo-link {
        height: 19px;
        width: 72px;
    }
    .col-phones__wrapper {
        display: none;
    }
    .dmi-logo__wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .acura-logo__wrapper {
        padding-right: 0;
        margin-top: -9px;
    }
    .acura-logo__wrapper img{
        width: 50px;
    }
    .honda-logo__wrapper {
        padding-right: 0;
        margin-top: -12px;
    }
    .honda-logo__wrapper img{
        width: 75px;
    }
    .left-menu__wrapper {
        position: fixed;
        width: 100%;
        left: -100%;
        overflow-y: auto;
    }
    .left-menu-container {
        padding: 0 0 0 52px;
    }
    .left-menu-point a {
        font-size: 16px;
    }
    .left-menu-container-2 .left-menu-point a {
        font-size: 14px;
    }
    .hot-phones__wrapper {
        margin: 25px;
        padding: 10px 0 0 0;
    }
    .hot-phones-inner {
        margin: 15px 0 0 28px;
    }
    .hot-phones-title {
        font-size: 9px;
    }
    .hot-phoes-phone a {
        font-size: 21px;
    }
    .recall-leftmenu {
        display: inline-block;
        color: #000;
        border-bottom: dashed 1px #000;
        text-transform: uppercase;
        font-size: 14px;
    }
    .modal-order-right-wrapper {
        width: 100%;
    }
    .modal-order-right-content-wrapper {
        padding: 34px 51px;
    }
    .modal-order-wrapper {
        display: block;
        position: relative;
        overflow-y: auto;
    }
    .modal-order-right-wrapper {
        height: auto;
    }
    .blue-menu__inner {
        display: none;
    }
    .blue-menu {
        height: auto;
        position: absolute!important;
        min-height: 40px;
        width: 90%;
        left: 5%;
        height: auto;
        top: -26px;
    }
    .blue-menu-point {
        height: 37px;
    }
    .blue-menu__opener {
        position: relative;
        text-align: center;
        left: 50%;
        margin-left: -18px;
        margin-top: 16px;
        margin-bottom: 15px;
    }
    .blue-menu__openerarrow {
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 10px;
        margin: 0 2px;
        position: relative;
        display: flex;
    }
    .blue-menu.open .blue-menu__openerarrow {
        background: transparent;
        border: solid 1px #fff;
    }
    .blue-menu__opener {
        display: inline-flex;
    }
    .blue-menu.open .blue-menu__inner{
        display: block;
    }
    .blue-menu .blue-menu-point {
        opacity: 0;
        transform: translateY(30px);
    }
    .blue-menu.open .blue-menu-point {
        opacity: 1;
        transform: translateY(0);
    }
    .dm-title {
        font-size: 23px;
    }
    .model-list-price {
        font-size: 21px;
    }
    .model-list-price span,
    .model-list-price i{
        font-size: 13px;
    }
    .model-list-image {
        top: 7px;
        left: -15px;
        width: 100%;
        height: 71%;
    }
    .model-list__inner {
        min-height: 207px;
    }
    .model-more-text {
        width: auto;
    }
    .model-more__wrapper {
        padding: 21px 21px;
    }
    .model-more__wrapper .hot-phoes-phone a {
        font-size: 21px;
    }
    .model-group a {
        font-size: 11px;
        display: block;
    }
    .model-list-title a{
        font-size: 19px;
        background: #fff;
    }
    .menu-bodyrepair__image {
        width: 110%;
        position: relative;
        margin-top: 40px;
    }
    .menu-bodyrepair__wrapper {
        padding: 0;
        margin: 20px 0;
        font-size: 11px;
    }
    .menu-bodyrepair__wrapper blockquote {
        position: relative;
        margin: 0;
        padding: 0;
        left: auto;
        right: auto;
        width: auto;
        bottom: auto;
    }
    .menu-bodyrepair-rootlink__wrapper {
        position: relative;
        width: 100%;
        left: auto;
    }
    .dm-text {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
    }
    .page-heading-title h1 {
        font-size: 25px;
    }
    .hotlinks-one {
        margin: 12px;
    }
    .feedback__inner .feedback-text {
        color: #fff;
        font-size: 23px;
        font-weight: 300;
        line-height: 133%;
        /* padding-right: 50px; */
        text-align: center
    }
    .morelink {
        margin-left: 0;
        margin: 20px 0 20px 50px;

    }
    .on-image__wrapper {
        position: relative;
        width: 100%;
    }
    .on-date {
        margin-left: 0;
    }
    .articles-content .on-content, .last-news__section .on-content {
        margin: 0;
    }
    .one-action__wrapper {
        margin-bottom: 40px;
    }
    .sg-arrow-right {
        right: 10px;
    }
    .sg-arrow-left {
        left: 10px;
    }
    .sg-one-date {
        display: none;
    }
    .sg-one-title {
        font-size: 15px;
        line-height: 19px;
        font-weight: 600;
        text-align: center;
        position: absolute;
        top: 0;
        left: -90%;
        width: 280%;
        height: auto;
        background: #000;
        padding: 10px;
    }
    .sg-one {
        height:261px;
    }
    .questions__section .feedback-text {
        text-align: center;
        padding-right: 0;
    }
    .feedback__inner .feedback-text {
        padding-right: 0;
    }
    .footer-menu-one {
        display: block;
    }
    .footer-action-menu .hot-phones-inner,
    .footer-logo__wrapper,
    .footer-address,
    .social-icons__wrapper {
        margin-left: 40px;
    }
    .hg-nav-one.slick-current {
        display: block;
    }
    .hg-nav-one {
        opacity: 0;
    }
    .hg-nav-one.slick-current {
        opacity: 1;
    }
    .hg-one .text-black {
        font-size: 13px;
    }
    .the-content.page-text .text-big {
        font-size: 14px;
    }
    .ps-one {
        padding: 10px 20px;
    }
    .on-image {
        position: relative;
    }
    .on-date {
        margin: 0!important;
    }
    .on-content {
        margin: 0!important;
        padding: 0!important;
    }
    .questions__section h3 {
        font-size: 31px;
        text-align: center;
    }
    .main-news.main-action .on-image__wrapper {
        width: 100%;
    }
    .list-news .one-news__wrapper {
        margin: 10px 0;
    }
    .articles-list .on-image__wrapper {
        width: 100%;
    }
    .articles-list .on-date {
        color: #000;
    }
    .breadcrumb-item.active {
        display: none;
    }
    .the-content.page-text.news-content blockquote {
        font-weight: 300;
        margin: 25px 0px 30px 0px;
        padding: 25px 15px 10px;
        background: #efefef;
    }
    .model-list-badge-action {
        left: -20px;
    }
    .the-content.page-text.model-content blockquote {
        position: relative;
        width: auto;
        margin: -50px 0 100px;
        padding: 0;
    }
    .new-page-content.the-content.page-text.model-content blockquote p {
        font-size: 13px!important;
        color: #000;
    }
    .the-content.page-text h2 {
        font-size: 28px;
    }
    .the-content.page-text.model-content img.alignleft {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 20px;
    }
    .the-content.page-text.model-content img.alignright {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 20px;;
    }
    .the-content.page-text.model-content img.alignnone,
    .the-content.page-text.model-content img.aligncenter {
        width: 100%;
        height: auto;
        margin: 0 0 20px;
    }
    .model-color__wrapper {
        margin: 5px;
    }
    .one-color-slide {
        height:190px;
    }
    .one-color-slider-nav-text {
        padding: 7px;
        font-size: 10px;
    }
    .one-color-slider-nav {
        width: 36px;
        height:35px;
        margin-bottom: 17px;
    }
    .model-color-slider {
        margin-top: 50px;
    }
    .model-color-slider-nav {
        margin-top: 10px;
    }
    .ps-one.active {

    }
    .detailed-specs__wrapper {
        margin: 20px -10px;
    }
    .model-list__wrapper.category__wrapper {
        margin: -15px;
    }
    .subpages-list__wrapper .on-content {
        top: -60px;
    }
    .the-content.page-text.model-content blockquote p {
        font-size: 17px!important;
    }
    .sub-service-form__wrapper {
        padding: 10px;
        margin: -15px;
    }
    .the-content.page-text h3 {
        font-size: 23px;
    }
    .index-about__container h1 {
        font-size: 29px;
    }
    .index-about__container p {
        font-size: 14px;
    }
    .on-image-specs__wrapper {
        position: relative;
    }
    .list-specs-group {
        margin-left: 5px;
        margin-right: 5px;
    }
    .left-menu__bg {
        height: 180vh;
    }
    .hot-links-menu__wrapper {
        /*top: 30%;*/
    }
    .flagallery.cicerone_skin {
        padding: 0;
        width: 135%;
        margin: 0 -45px!important;
    }
    .fla_Multi_GridCollection_Item img {
        position: relative!important;
        left: 0!important;
        width: 100%!important;
        height: auto!important;
    }
    .fla_Multi_GridCollection_Item {
        float: none!important;
        display: block!important;
        height: auto!important;
    }
    .full-width.video {
        height: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .full-width.video video {
        height: auto;
    }
    .page-content__wrapper {
        padding-bottom: 0;
    }
    .mt-n150 {
        margin-top: -10px;
    }
    .the-content table {
        display: block;
        width: 110% !important;
        overflow-x: auto;
        height: auto!important;
        margin: 30px 0px 30px -15px;
    }
    .the-content table td {
        padding: .25rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }
    .the-content table td p {
        font-size: 0.9rem!important;
    }
    .language-top-leftmenu {
        margin-left: 35px;
        margin-bottom: 20px;
    }
    .language-top-leftmenu .btn-shc-white-outline {
        color: #000;
    }
    .alert_title a {
        text-decoration: underline;
    }
    .detailed-specs-compare__inner {
        min-width: 890px;
    }
    .to-compare__wrapper {
        height: 85px;
    }
    .detailed-specs-compare__wrapper {
        overflow-y: auto;
    }
    .action-infowindow__wrapper {
        width: 100%;
    }
    .action-infowindow__wrapper.shown {
        left: 0!important;
    }
    .action-infowindow-title a {
        font-size: 20px;
    }
    .action-infowindow-timer__wrapper {
        left: 0;
    }
    .on-period {
        margin-left: 0;
        width: 100%;
        height: 230px;
    }
    .on-period-anonstext {
        position: relative;
        left: 0;
        height: 31px;
        width: 400px;
        margin: 0 -50px;
        text-align: left;
        background: #f5f5f5;
        padding: 10px 50px;
    }
    #timeraction {
        position: relative;
        left: -56px;
        padding: 16px 0;
        background: #f5f5f5;
        height: 120px!important;
        top: 0px;
    }
    .main-news .on-image__wrapper {
        width: auto;
    }
    .actionlist-timer .actionlist-timer__inner {
        width: 100%;
        min-width: auto!important;
    }
    .the-content.page-text img {
        max-width:100%;
        height: auto;
        margin: 0!important;
    }

    .blue-menu__wrapper,
    .modal-order-left-wrapper,
    .modal-order-right-content-wrapper .hot-phones-inner,
    .sg-one-link .sg-one__inner .morelink,
    .sg-one-text,
    .footer-menu-one,
    .hg-nav-one,
    .index-gallery-slider-nav__wrapper{
        display: none;
    }

    .civil {
        top: 0;
        bottom: auto;
    }
    .civil .action-infowindow-title {
        font-size: 16px;
    }

    .motorbike-description {
        display: none;
    }
    .model-one {
        background: #20303d;
    }

    .page-id-49 .page-screen,
    .honda_cars-template .page-screen {
        min-height: 250px;
    }

}

.acf-input-wrap {
    overflow: visible;
}