@import "font_lato.css";

:root {

    /* Fonts */
    --font-family-primary: "Lato", sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    --primary: #2b4268;
    --secondary: #ed9f1c;
    --secondary-hover: #ffc600;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;

    --white: #fff;

    --background-light: #F7FAFC;
    --border-color-light: #E2E8F0;


    --accent-color-1: #2b4268;
    --accent-color-2: rgba(43, 66, 104, 0.78);
    --accent-color-3: #2b4268;
    --accent-color-4: rgba(92, 107, 140, 0.86);
    /* Светлый тон основного, прозрачный */

    --placeholder-color-1: rgba(180, 191, 212, 0.65);



}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

input[name="surname"] {
    display: none;
}

em {
    font-style: italic;
    font-weight: normal;
}

strong {
    font-style: normal;
    font-weight: bold;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

h2 {
    font-size: 90%;
    font-weight: normal;
}

h3 {
    font-size: 14px;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

html {
    height: 100%;
    background: #fff;
}

body {
    /*font: 16px/1.5em "HelveticaNeueCyr", sans-serif;*/

    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--font-size-base);

    height: 100%;
    color: #FFFFFF;
    background: none;
}

a,
a:link,
a:focus,
a:active {
    outline: medium none;
}

a {
    color: #254663;
    outline: none;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 0 0 18px
}

img {
    height: auto;
    max-width: 100%;
}

input {
    vertical-align: middle;
}

.yellow {
    color: #ffc700;
}

a.yellow:hover {
    color: #ffc700;
}


/* section-header */

.section-header {
    min-height: 85px;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 10px 5px;
    font-size: 18px;
    line-height: 20px;
}

.modal-backdrop.in {
    filter: alpha(opacity=70);
    opacity: .7;
}

.text-center {
    text-align: center;
}

.logo {
    color: #ffc700;
    margin: 21px 24px 0 -6px;
    text-align: left;
    display: inline-block;
    min-width: 260px;
}

@media (max-width: 1200px) {
    .logo {
        margin: 21px 24px 0 0;
        min-width: 200px;
    }


    .navbar .container,
    #header .container {
        width: 100%;
        padding: 0 10px
    }


}

.logo:hover {
    text-decoration: none;
    color: #ffc700;
}

.logo span {
    font-weight: 400;
    padding: 0 0 0 15px;
    display: block;
}

.tel {
    margin: 0px 0 0;
    overflow: hidden;
    font-size: 14px;
    text-align: right;
}

@media (max-width: 1100px) {
    .tel span {
        display: none;
    }

    .tel {
        font-size: 13px;
    }
}

.section-content {
    margin: 0 0 50px 0;
    position: relative;
}

.section-category {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.tel a {
    color: #fff;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    margin: 6px 14px 4px 12px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.tel a:hover {
    text-decoration: none;
}

.tel a.phone {
    font-size: 15px;
    color: #fdd805;
}

.tel a.whatsapp {
    font-weight: 400;
    font-size: 14px;
}

.icon-menu {
    width: auto;
    position: relative;
    -webkit-transform: translate3D(0, 0, 0);
    -moz-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
    margin: 0 0 0 -60px;
}

.icon-menu-inner {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.icon-menu a {
    display: table-cell;
    color: #0662A9;
    width: 20%;
    height: 85px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: color 0.1s ease-in-out 0s;
    -moz-transition: color 0.1s ease-in-out 0s;
    -o-transition: color 0.1s ease-in-out 0s;
    transition: color 0.1s ease-in-out 0s;
}

.icon-menu a.active {
    background-color: rgba(11, 35, 56, 0.55);
    color: #fff;
}

.icon-menu span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    padding: 1px 2px 0;
    line-height: 14px;
    letter-spacing: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.icon-menu i {
    display: block;
    height: 36px;
    line-height: 36px;
    margin: 5px;
    font-size: 0;
}

.icon-menu .icon1 i {
    line-height: 32px;
}

.icon-menu .icon2 i {
    line-height: 30px;
}

.icon-menu .icon3 i {
    line-height: 28px;
    margin: 0px 5px 5px;
}

.icon-menu .icon4 i {
    line-height: 28px;
    margin: 0 5px 5px;
}

.icon-menu .icon5 i {
    line-height: 30px;
}

.icon-menu .svg {
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
}

.icon-menu a:hover {
    color: #D80027;
    background: #ececec;
    text-decoration: none;
}

.icon-menu a:hover .svg,
.icon-menu a:hover .iconmenu {
    fill: #D80027;
}

.m_icon i {
    display: inline-block;
    width: 45px;
    text-align: center;
}

.m_icon .icon1 .svg {
    min-width: 25px;
    width: 25px;
}

.m_icon .icon2 .svg {
    min-width: 21px;
    width: 21px;
    top: -2px;
}

.m_icon .icon3 .svg {
    width: 20px;
    min-width: 20px;
}

.m_icon .icon4 .svg {
    width: 29px;
    min-width: 29px;
}

.m_icon .icon5 .svg {
    width: 25px;
    min-width: 20px;
    top: -3px;
}

.htitle {
    font-size: 1.0em;
    padding: 8px 0 0;
}

.n-block {
    margin: 5px auto 0;
}

.n-block .inner {
    overflow: hidden;
}

.n-block-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 8px 0 23px;
    text-align: center;
    vertical-align: middle;
}

.n-block-title .min {
    font-size: 17px;
}

.bock-left {
    float: left;
    width: 50%;
}

.bock-right {
    float: right;
    width: 50%;
}

.n-block-img {
    text-align: center;
}

.n-block-price {
    padding: 0 40px;
    font-size: 15px;
    line-height: 21px;
}

.n-block-price table {
    width: 100%;
}

.n-block-price td {
    border-bottom: 1px solid #335F7B;
    padding: 0px 5px;
}

.n-block-price tr:hover,
.n-block-price td:hover {
    background: #16496D;
}

.n-block-price span {
    color: #ffc700;
    display: block;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    text-align: right;
    white-space: nowrap;
}

.n-block-form {
    padding: 15px 10px;
    background: #446079;
    margin: 0 auto;
    max-width: 385px;
}

.n-block-form .form-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin: 5px 0 10px;
    text-align: center;
}

.n-block-form .desc {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.desc .n-tel {
    color: #ffc700;
    display: block;
    font-size: 21px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}

.desc .n-tel a {
    color: #ffc700;
    text-align: center;
    text-decoration: none !important;
    font-size: 25px;
}

.ac-list {
    padding: 45px 10px 0;
}

.ac-list li {
    font-size: 18px;
    background: rgba(0, 0, 0, 0) url(../img/check.png) no-repeat scroll 0 8px;
    padding: 2px 0 18px 30px;
}

#map {
    width: auto;
    height: 450px;
}

.tab-contact {
    font-size: 14px;
    border-collapse: collapse;
    text-align: left;
    margin: 0 0 15px;
}

.tab-contact td {
    border-style: solid;
    border-width: 0px 0px 1px 0;
    border-color: #777;
    padding: 3px 10px 3px 0;
}

.siner .tab-contact td p {
    margin: 3px 0;
}

.tel-btn {
    background-color: #ff6600;
    border-bottom: 2px solid #D80027;
    border-radius: 7px;
    border-width: 4px 4px 3px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
    margin: 0;
    padding: 0 35px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
    display: inline-block;
}

.tel-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.n-block-form .desc .min {
    font-size: 13px;
    display: block;
    text-align: center;
}

.input-container {
    margin-bottom: 10px;
}

.form-control {
    background-color: #cfd7de;
    border: 1px solid #cfd7de;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #111111;
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.6px;
    margin: 0 auto;
    padding-left: 10px;
}

input.form-control {
    height: 32px;
}

textarea.form-control {
    height: 70px;
}

.buttons {
    text-align: center;
}

.btn {
    -moz-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.buttons .btn {
    border-bottom: 6px solid #D80027;
    border-radius: 0;
    border-width: 4px 4px 3px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 0 35px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
    background: #d80027;
}

.buttons .btn:hover,
.buttons .btn:active,
.buttons .btn:link,
.buttons .btn:focus {
    background-color: #ffa200;
    border-bottom: 2px solid #ffa200;
}

input.place::-webkit-input-placeholder,
textarea.place::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #3b4c5a;
}

input.place:-moz-placeholder,
textarea.place:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #3b4c5a;
}

input.place::-moz-placeholder,
textarea.place::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #3b4c5a;
}

input.place:-ms-input-placeholder,
textarea.place:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #3b4c5a;
}

input.place:input-placeholder,
input.place:placeholder,
input.place::input-placeholder,
input.place::placeholder,
textarea.place:input-placeholder,
textarea.place:placeholder,
textarea.place::input-placeholder,
textarea.place::placeholder {
    color: #3b4c5a;
}

input.place:focus::-webkit-input-placeholder,
textarea.place:focus::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #cfd7de;
}

input.place:focus:-moz-placeholder,
textarea.place:focus:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #cfd7de;
}

input:focus.place::-moz-placeholder,
textarea:focus.place::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #cfd7de;
}

input.place:focus:-ms-input-placeholder,
textarea.place:focus:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #cfd7de;
}

input.place:focus:input-placeholder,
input.place:focus:placeholder,
input.place:focus::input-placeholder,
input.place:focus::placeholder,
textarea.place:focus:input-placeholder,
textarea.place:focus:placeholder,
textarea.place:focus::input-placeholder,
textarea.place:focus::placeholder {
    color: #cfd7de;
}

.desc-bottom {
    color: #ffc700;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    padding: 25px 0 0;
    text-align: center;
}

.plus {
    clear: both;
    padding: 10px 10px 0 55px;
    font-size: 15px;
}

.plus ul li {
    background: rgba(0, 0, 0, 0) url("../img/check.png") no-repeat scroll 0 8px;
    padding: 0 0 1px 20px;
}

.car {
    background: transparent url("../img/bgslide.png") repeat scroll 0px 0px;
    height: 212px;
    margin: 0px auto 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.inercar {
    padding: 9px 74px;
}

#cc {
    display: block;
    overflow: hidden;
}

#cc li {
    float: left;
    height: 193px;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: 284px;
    z-index: 10;
}

.prblock {
    background: url("../img/sltext.png") no-repeat scroll 0 0 transparent;
    display: block;
    cursor: default;
    height: 59px;
    margin: 3px auto 0;
    width: 228px;
}

.cname {
    color: #000000;
    display: block;
    font-size: 17px;
    padding: 10px 0 0;
}

.cprice {
    color: #000000;
    display: block;
    font-size: 14px;
    padding: 2px 0 0;
}

.cprice span {
    font-size: 16px;
}

.sliderarrows {
    height: 212px;
    left: 0;
    /*display:none;*/
    position: absolute;
    top: 0;
    width: 1000px;
}

.sliderarrows .prev,
.sliderarrows .next {
    display: block;
    height: 191px;
    width: 48px;
    position: absolute;
    overflow: hidden;
    text-indent: -100em;
}

.sliderarrows .prev {
    background: url(../img/slbut.png) left top no-repeat;
    left: 10px;
    top: 10px;
}

.sliderarrows .prev:hover {
    background: url(../img/slbut.png) left bottom no-repeat;
}

.sliderarrows .next {
    background: url(../img/slbut.png) right bottom no-repeat;
    right: 10px;
    top: 10px;
}

.sliderarrows .next:hover {
    background: url(../img/slbut.png) right top no-repeat;
}

#cc li:hover .prblock {
    background: url("../img/sltext.png") right top no-repeat;
}

#cc li:hover .cname {
    color: #fff500;
}

#cc li:hover .cprice {
    color: #fff;
}

.navbar-inverse {
    background-color: #0A3252
}

.navbar-inverse .navbar-top>li.selected>a {
    background-color: #D80027
}

.navbar-inverse .navbar-top>.selected>a,
.navbar-inverse .navbar-top>.active>a:hover,
.navbar-inverse .navbar-top>li>a:hover,
.navbar-inverse .navbar-top>li>a:focus {
    background-color: #D80027
}

.navbar-inverse .navbar-top>.active>a,
.navbar-inverse .navbar-top>.open>a,
.navbar-inverse .navbar-top>.open>a,
.navbar-inverse .navbar-top>.open>a:hover,
.navbar-inverse .navbar-top>.open>a,
.navbar-inverse .navbar-top>.open>a:hover,
.navbar-inverse .navbar-top>.open>a:focus {
    background: #FF2428;
    box-shadow: none;
}

.dropdown-menu {
    background-color: #125C96
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: #428BCA
}

.navbar-inverse {
    background: #222;
    height: 35px;
    min-height: 35px;
    border-radius: 0;
    background-image: linear-gradient(to bottom, #3c3c3c 0, #222 100%);
    border: medium none;
    margin-bottom: 0;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-image: none;
}

.navbar-inverse .navbar-brand {
    color: #999999;
    max-width: 200px;
}

.navbar-inverse .navbar-top>li>a {
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    padding: 10px 12px 10px;
    cursor: pointer;
    letter-spacing: 0px;
    white-space: nowrap;
}

.navbar-inverse .navbar-top>li>a:hover,
.navbar-inverse .navbar-top>li>a:focus {
    color: #FFFFFF
}

.navbar-inverse .navbar-top>.active>a,
.navbar-inverse .navbar-top>.open>a,
.navbar-inverse .navbar-top>.open>a:hover,
.navbar-inverse .navbar-top>.open>a:focus {
    color: #FFFFFF
}

.navbar-inverse .navbar-top>.active>a:hover,
.navbar-inverse .navbar-top>.active>a:focus {
    color: #FFFFFF
}

.dropdown-menu>li>a {
    color: #333333
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #FFFFFF
}

.navbar-inverse .navbar-top>.dropdown>a .caret {
    border-top-color: #999999
}

.navbar-inverse .navbar-top>.dropdown>a:hover .caret {
    border-top-color: #FFFFFF
}

.navbar-inverse .navbar-top>.dropdown>a .caret {
    border-bottom-color: #999999
}

.navbar-inverse .navbar-top>.dropdown>a:hover .caret {
    border-bottom-color: #FFFFFF
}

.item-page_trezvii_voditel {
    text-align: left;
}

.section-action {
    margin: 20px 0 30px;
}

#topmenu {
    background: #0a3252 none repeat scroll 0 0;
    margin: 29px 0 34px;
    overflow: hidden;
}

#topmenu .tmenu {
    height: 145px;
    display: block;
    float: left;
}

#topmenu .tmenu li {
    float: left;
    height: 145px;
    margin: 0 8px;
    padding: 0;
}

#topmenu .tmenu li a {
    display: block;
    float: left;
    height: 62px;
    height: 145px;
    overflow: hidden;
    text-indent: -100em;
    background: url(../img/menu4.png) 0 0 no-repeat;
}

#topmenu .tmenu li.item103 a {
    width: 155px;
    background-position: 0 0;
}

#topmenu .tmenu li.item104 a {
    width: 182px;
    background-position: -155px 0;
}

#topmenu .tmenu li.item105 a {
    width: 191px;
    background-position: -337px 0;
}

#topmenu .tmenu li.item106 a {
    width: 152px;
    background-position: -528px 0;
}

#topmenu .tmenu li.item107 a {
    width: 236px;
    background-position: -680px 0;
}

#topmenu .tmenu li.item103 a:hover {
    width: 155px;
    background-position: 0 -145px;
}

#topmenu .tmenu li.item104 a:hover {
    width: 182px;
    background-position: -155px -145px;
}

#topmenu .tmenu li.item105 a:hover {
    width: 191px;
    background-position: -337px -145px;
}

#topmenu .tmenu li.item106 a:hover {
    width: 152px;
    background-position: -528px -145px;
}

#topmenu .tmenu li.item107 a:hover {
    width: 236px;
    background-position: -680px -145px;
}


/* topslider */

.section-topslider {
    padding: 0;
    overflow: hidden;
}

.section-topslider .container {
    width: 100%;
}

#mod-finder-searchform-96>div>div.jlmf-section.jlmf_21 {
    opacity: 0;
}

#topslider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin: 0;
}

.slide-viewport {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.slide-viewport .slide {
    position: relative;
    width: 100%;
    height: 480px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
}

#topslider .slide-viewport .slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 44%;
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(top, rgba(50, 36, 30, 0.7) 0%, rgba(30, 36, 51, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(50, 36, 30, 0.7) 0%, rgba(30, 36, 51, 0) 100%);
}

#topslider .slide .body {
    padding-top: 80px;
}

#topslider .slide .body:before {
    content: '';
    position: absolute;
    width: 894px;
    height: 589px;
    left: -60px;
    top: 0;
    background: url('../img/shade.png') no-repeat 0 0;
    background-size: 100% 100%;
}

#topslider .slide H2 {
    position: relative;
    font-weight: 400;
    font-size: 38px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.desktop #topslider .slide H2 {
    -webkit-transition: all 0.3s ease-in-out 0.4s;
    -moz-transition: all 0.3s ease-in-out 0.4s;
    -o-transition: all 0.3s ease-in-out 0.4s;
    transition: all 0.3s ease-in-out 0.4s;
}

#topslider .slide H2 I {
    position: absolute;
    width: 93px;
    height: 81px;
    left: -3em;
    top: 0.3ex;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

#topslider .slide UL {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
}

.desktop #topslider .slide UL {
    -webkit-transition: all 0.3s ease-in-out 0.5s;
    -moz-transition: all 0.3s ease-in-out 0.5s;
    -o-transition: all 0.3s ease-in-out 0.5s;
    transition: all 0.3s ease-in-out 0.5s;
}

#topslider .slide li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 20px;
}

#topslider .slide li:last-child {
    margin-bottom: 0;
}

#topslider .slide li span.orange {
    color: #D80027;
}

#topslider .slide li:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='white' fill-opacity='0.2'/%3E%3Ccircle cx='7' cy='7' r='3' fill='white'/%3E%3C/svg%3E%0A");
}

#topslider .slide P {
    position: relative;
    font-size: 1.25em;
    margin: 0;
}

.desktop #topslider .slide P {
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s;
}

.desktop #topslider .slide H2,
.desktop #topslider .slide UL,
.desktop #topslider .slide P {
    opacity: 0;
    -webkit-transform: translate3D(-10%, 0, 0);
    -moz-transform: translate3D(-10%, 0, 0);
    -ms-transform: translate3D(-10%, 0, 0);
    transform: translate3D(-10%, 0, 0);
}

.desktop #topslider .cycle-slide-active H2,
.desktop #topslider .cycle-slide-active UL,
.desktop #topslider .cycle-slide-active P {
    opacity: 1;
    -webkit-transform: translate3D(0, 0, 0);
    -moz-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}

#topslider .slide .ybutt {
    width: 14em;
}

#topslider .slide-click {
    height: 0;
    z-index: 110;
    margin-top: -120px !important;
}

#topslider .body {
    position: relative;
    width: 95%;
    margin: 0 auto;
    max-width: 1140px;
}

#topslider .slide-click A {
    float: left;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    overflow: hidden;
    text-indent: -9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 12L6.5 11L2.3 7H15V6H2.3L6.3 2L5.5 1L0 6.5L5.5 12Z' fill='white'/%3E%3C/svg%3E%0A");
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    font-size: 0;
}

#topslider .slide-click A+A {
    float: right;
    transform: scaleX(-1);
}

#topslider .slick-dots {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#topslider .slick-dots li {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 15px;
}

#topslider .slick-dots li.slick-active {
    width: 12px;
    height: 12px;
    background: #0086DF;
    margin: 0 14px;
}

#topslider .slick-dots li button {
    display: none;
}

.bx-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
}

.bx-wrapper .bx-viewport {
    left: 0;
    border: 0 none;
    box-shadow: none;
    height: 100%;
    background-color: transparent;
}

.navfixed MAIN {
    min-height: 100%;
    padding: 64px 0 18.125em;
    margin-bottom: -18.125em;
}

.ybutt,
.ybutt-s {
    display: inline-block;
    vertical-align: top;
    color: #fff !important;
    text-align: center;
    background-color: #1585DB;
    text-decoration: none;
    border: 0 none;
    cursor: pointer;
}

.ybutt:hover {
    color: #fff !important;
}

#event_zakaz {
    width: 230px;
    height: 40px;
    margin: 22px 0 0;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.03em;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}

#event_zakaz:hover {
    background: #00558A;
}


@media (max-width: 1200px) {

    #event_zakaz {
        width: 180px;
        font-size: 12px;
    }
}

#event_zakaz_mobile {
    width: 250px;
    height: 40px;
    margin: 19px auto;
    line-height: 40px;
    display: block;
    text-align: center;
    letter-spacing: 0.03em;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}

#event_zakaz:hover,
#event_zakaz_mobile:hover {
    background: #00558A;
}

.ybutt {
    font-size: 0.85em;
    width: 17em;
    height: 2.6em;
    line-height: 2.6em;
    font-weight: 400;
    text-transform: uppercase;
}

#topslider .slide .ybutt {
    width: auto;
    padding: 0 2em;
    min-width: 14em;
    height: 40px;
    margin: 40px 0 0;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    color: #FFFFFF;
}

#topslider .slide .ybutt.mt40 {
    margin-top: 40px;
}

#topslider .slide .ybutt.mt30 {
    margin-top: 30px;
}

#topslider .slide .ybutt.mt20 {
    margin-top: 20px;
}


/* end topslider */


/* advantage */

.advantage {
    padding: 70px 0 80px;
    background: #F3F7FA;
}

.advantage-title {
    font-weight: normal;
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    color: #333333;
    margin-bottom: 40px;
}

.advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-item {
    flex-basis: 270px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.advantage-item__icon {
    background: #FFFFFF;
    width: 80px;
    height: 80px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.advantage-item__text .blue-text {
    color: #1585db;
    display: inline;
}

#middle {
    width: 100%;
    padding: 0px 0px 10px;
    height: 1%;
    position: relative;
}

#middle:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}


/* filter */
.jlcontentfieldsfilter {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 15px 5px;
    justify-content: space-between;
    position: relative;
}

.checkbox-list {
    margin: 10px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .checkbox-list {
        gap: 10px;
    }
}

.checkbox-list li {
    display: inline-block;
    padding-bottom: 0px;
}

.tab-contact_wrap {
    max-width: 100%;
    /*overflow: scroll;*/
}

.checkbox-list-1 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.checkbox-list-label {
    padding: 4px 9px 4px 0;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #000;
}

.jlmf-checkbox+label {
    display: inline-block;
    border: 1px solid rgba(139, 139, 139, .3);
    color: #616161;
    border-radius: 50px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    margin: 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
    padding: 10px 25px 10px 25px;
    position: relative;
    background: #F2F2F2;
    line-height: 25px;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .jlmf-checkbox+label {
        padding: 8px 15px;
        line-height: 20px;
        font-size: 15px;
    }
}

.jlmf-checkbox+label:hover {
    background: #dde9f9;
}

.jlmf-checkbox+label::after {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -6px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 12px;
    padding: 2px;
    content: "";
    transition: transform .3s ease-in-out;
}

.jlmf-checkbox:checked+label::after {
    content: "";
    background: url(../images/i/close.png) 0 0 no-repeat;
    width: 10px;
    height: 10px;
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

.jlmf-checkbox:checked+label {
    background-color: #c5dbe6;
    padding: 10px 25px 10px 25px;
    color: #000;
    transition: all .2s;
    font-weight: 400;
}

.jlmf-checkbox {
    display: absolute;
}

.jlmf-checkbox {
    position: absolute;
    opacity: 0;
}

.jlmf-link {
    display: inline-block;
    padding: 15px 15px;
    font-size: .95em;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    background: #e7e7e7;
    border-radius: 35px;
    border: 1px solid #c3d9f5;
}


@media (max-width: 1000px) {
    .jlmf-link {
        display: inline-block;
        padding: 5px 10px;
        font-size: 0.8em;
        font-weight: 400;
        white-space: nowrap;
        cursor: pointer;
        background: #e7e7e7;
        border-radius: 35px;
        border: 1px solid #c3d9f5;
        position: absolute;
        top: 0;
        right: 0;
    }
}

.noUi-connect {
    background: #D80027;
}

.noUi-handle {
    border: 3px solid #D80027;
    border-radius: 100%;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.table-block {
    overflow-x: auto;
}

p {
    line-height: 15px;
    margin: 10px 0;
    text-indent: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

#sideLeft {
    float: left;
    width: 328px;
    margin-left: -100%;
    position: relative;
}


/* section-module-left  */

.section-module-left {
    margin: 10px 0;
}

#footer .right .whatsapp {
    color: #fff;
}

.left_inner {
    padding: 0;
    background: transparent url("../img/bgslide.png") repeat scroll 0 0;
}

.section-footer-top {
    background: #0662A9;
    padding: 10px 0;
    height: 140px;
}

.f-title {
    margin: 0;
    padding: 52px 0px 0;
    font-size: 24px;
    font-weight: 400;
}

.section-footer-top .ybutt {
    font-size: 14px;
    width: auto;
    height: auto;
    line-height: 2.6em;
    font-weight: 400;
    margin: 35px 0 0;
    text-transform: uppercase;
    border: 1px #fff solid;
    background: none;
    display: inline-block;
    padding: 6px 39px;
    letter-spacing: 1px;
}

.section-footer-top .ybutt:hover {
    text-decoration: none;
    background: #00558A;
}

#footer {
    margin: 0 auto;
    background: #0b1e2d;
    min-height: 45px;
    position: relative;
    overflow: hidden;
}

.main-footer {
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer-topline {
    background-color: #002241;
    padding-top: 26px;
    padding-bottom: 42px;
}

.footer-action {
    border-left: 1px solid #4a4a4a;
    padding-left: 50px;
    margin: 5px 0;
}

.footer-nav .col-nav {
    float: left;
}

.footer-nav .col-nav:nth-of-type(1) {
    width: 30%;
}

.footer-nav .col-nav:nth-of-type(2) {
    width: 30%;
}

.footer-nav .col-nav:nth-of-type(3) {
    width: 30%;
}

.footer-nav .col-nav:nth-of-type(4) {
    width: 20%;
}

.col-nav__title {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    line-height: 2.33;
    color: #676767;
}

.col-nav__list {
    list-style: none;
}

.col-nav__link {
    line-height: 2.19;
    color: #fff;
    font-size: 14px;
    transition: .3s ease;
}

.col-nav a.col-nav__link:hover {
    color: #479add;
}

.main-footer-call__call_back {
    margin-top: 25px;
}

.main-footer-phone {
    font-size: 24px;
    letter-spacing: 0.6px;
    color: #479add;
    margin-bottom: 5px;
    white-space: nowrap;
    display: block;
}

.main-footer-call__call_back--link {
    background-image: url(../images/i/noun_415595_cc.svg);
    background-repeat: no-repeat;
    -webkit-background-size: 16px;
    background-position-y: 2px;
    background-size: 16px;
    padding-left: 25px;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.2px;
    text-decoration: underline;
}

.main-footer-call__call_back .main-footer-call__call_back--link:hover {
    color: #fff;
}

.footer-payment {
    margin-top: 15px;
}

.footer-payment__title {
    font-size: 14px;
    line-height: 2.19;
}

.footer-payment__link {
    width: 44px;
    height: 29px;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    display: inline-block;
}

.payment-visa {
    background-image: url(../images/i/visa.png);
    margin-right: 5px;
    position: relative;
    bottom: -6px;
}

.payment-mastercard {
    background-image: url(../images/i/mc.png);
    position: relative;
    bottom: -6px;
}

.footer-bottomline {
    background-color: #0e4475;
    box-shadow: inset 0 0 14px 0 rgba(0, 0, 0, 0.17);
    padding-top: 15px;
    padding-bottom: 45px;
    color: #fff;
}

.footer-copyright {
    float: left;
    font-size: 14px;
    line-height: 1.29;
    width: 70%;
}

.footer-copyright .privacy {
    color: #fff;
}

.footer-share {
    float: left;
    margin-left: 42px;
}

.footer-share__title {
    font-size: 14px;
    line-height: 2.5;
    display: inline-block;
    margin-right: 16px;
    vertical-align: middle;
}

.footer-share__list {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.footer-share__item {
    display: inline-block;
    margin-right: 11px;
}

.footer-share__link {
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    display: block;
}

.footer-share__link.vk {
    background-image: url(../images/i/vk.png);
}

.footer-share__link.fb {
    background-image: url(../images/i/fb.png);
}

.footer-share__link.tw {
    background-image: url(../images/i/tw.png);
}

.footer-share__link.ok {
    background-image: url(../images/i/ok.png);
}

.footer-share__link.mr {
    background-image: url(../images/i/mr.png);
}

.footer-dev {
    float: right;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer-dev__text {
    width: 144px;
    float: left;
    line-height: 1.29;
    margin-right: 14px;
}

.footer-dev__text a {
    color: #fff;
}

.footer-dev__text a:hover {
    color: #fff !important;
}

.footer-dev__logo {
    float: right;
    width: 100px;
    display: block;
    height: 32px;
}

.main-footer-call__link {
    color: #fff;
    padding: 12px 49px;
    background-color: #479add;
    display: block;
}

.main-footer-call__link:hover {
    color: #fff !important;
}

.b_toolbar_panel {
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5) translateY(-200%);
    transform: scale(0.5) translateY(-200%);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, 0.77, 0.33, 0.99), opacity 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s cubic-bezier(0.41, 0.77, 0.33, 0.99), opacity 0.3s, visibility 0s 0.3s;
}


/* $b_call */

.b_call_form {
    color: #333;
    background: #fff;
    position: absolute;
    top: 5px;
    right: -16px;
    padding: 14px 16px 16px;
    box-shadow: 0 1px 3px rgba(46, 56, 73, .36);
    box-sizing: border-box;
}

.b_call_form .b_close_mini {
    position: absolute;
    right: 15px;
    top: 17px;
}

.b_call_form .b_form_input {
    width: 302px;
}

.b_call_form .b_form_item {
    position: relative;
    margin: 0 0 17px;
}

.b_call_form .f_h4 {
    display: block;
    padding: 0 0 15px 0;
    width: 302px;
}

.js_callback .f_h4 {
    padding: 0 30px 15px 0;
    white-space: nowrap;
}

.siner {
    /*padding: 10px;*/
    color: #343c43;
    text-align: left;
}

.siner h2 {
    color: #343c43;
    text-align: center;
}

.siner h1 {
    color: #000;
    text-align: center;
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
    padding: 0 0 28px;
}

.siner h3 {
    color: #396994;
    font-weight: bold;
    font-size: 1.2em;
    padding: 15px 0 1px;
    line-height: 1.2em;
    text-align: center;
}

.siner p {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    text-indent: 0;
}

.siner .home-page-servises .f-title {
    color: #000;
    text-align: center;
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    padding: 35px 0 20px;
    margin: 0;
}

.siner .home-page-servises p.text-title {
    font-weight: bold;
    font-size: 15px;
    line-height: 16px;
    height: 38px;
}

.siner .home-page-servises p {
    font-size: 14px;
}


/*.siner ul {font-size: 14px;
line-height: 17px;
margin: 12px 0;
}
.siner ul li {
padding: 0 4px 10px 25px;
}

.siner ul li:before {
content:  "—";
position: relative;
left:-5px;
}*/

#footer .left {
    color: #ADB9B9;
    padding: 7px;
    line-height: 29px;
    padding: 7px;
    font-size: 15px;
}

#footer .right {
    color: #ADB9B9;
    line-height: 29px;
    padding: 7px;
    font-size: 15px;
}

#sideLeft .si {
    overflow: hidden;
    padding: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    border: 4px solid #05131e;
    background: #004464;
}

.usl {
    color: #b5c3d1;
    margin: 12px 0;
    min-height: 140px;
    padding: 10px 15px;
    text-align: left;
}

.usl .usl {
    background: #254663;
}

.usl.text-center {
    text-align: center;
}

.usl a {
    text-decoration: none;
    color: #b5c3d1;
}

.usl h2 {
    padding: 0;
}

.usl h2 a {
    color: #f9fafc;
    font-size: 17px;
    height: 37px;
    letter-spacing: -1px;
    line-height: 34px;
    padding: 0 0 0 53px;
    display: block;
}

.usl.us7 h2 {
    background: url("../img/col.png") no-repeat scroll 0 1px transparent;
}

.usl.us8 h2 {
    background: url("../img/sob.png") no-repeat scroll 0 1px transparent;
}

.usl.us9 h2 {
    background: url("../img/air.png") no-repeat scroll 0 1px transparent;
}

.usl.us10 h2 {
    background: url("../img/spe.png") no-repeat scroll 0 1px transparent;
}

.usl.us7 h2:hover {
    background: url("../img/cola.png") no-repeat scroll 0 1px transparent;
}

.usl.us8 h2:hover {
    background: url("../img/soba.png") no-repeat scroll 0 1px transparent;
}

.usl.us9 h2:hover {
    background: url("../img/aira.png") no-repeat scroll 0 1px transparent;
}

.usl.us10 h2:hover {
    background: url("../img/spea.png") no-repeat scroll 0 1px transparent;
}

.usl.us11 h2 {
    background: url("../img/sv.png") no-repeat scroll 0 1px transparent;
}

.usl.us11 h2:hover {
    background: url("../img/sva.png") no-repeat scroll 0 1px transparent;
}

.usl a:hover {
    color: #ffe258;
}

.usl h2:hover a {
    color: #ffe258;
}

.usl p {
    line-height: 18px;
    margin: 10px 0;
    text-indent: 0;
    font-size: 14px;
    padding: 0 15px;
}

.usl p a:hover {
    color: #b5c3d1;
}

.ct {
    color: #FFFFFF;
    display: block;
    font-size: 44px;
    font-weight: bold;
    height: 45px;
    padding: 5px 0 7px 15px;
    line-height: 35px;
}

.pall {
    width: 33%;
    float: left;
    overflow: hidden;
}

.pall li {
    line-height: 14px;
}

.pall li a {
    text-decoration: none;
    color: #fff;
    font-size: 11px;
}

.pall li a:hover {
    text-decoration: underline;
}

.bi {
    text-align: center;
    padding: 15px 0 0;
}

.bi h3 {
    color: #F9FAFC;
    font-size: 14px;
}

.yam {
    position: absolute;
    left: 270px;
    top: 7px;
    width: 88px;
    height: 31px;
}


/* form */

#layer_form {
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1111;
    background: url("../img/bgslide.png") repeat scroll 0 0 transparent;
}

#form_vopros #form_cb {
    background: #F8FAFC;
    height: 275px;
    width: 294px;
    float: left;
    position: relative;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    border: 3px solid #05131e;
}

#close_callback {
    text-shadow: 1px 1px 0px #940000;
    color: #254663;
    background: #FFD800;
    padding: 7px;
    text-align: center;
    border-radius: 19px;
    height: 12px;
    width: 12px;
    display: block;
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    position: absolute;
    right: 6px;
    top: 6px;
    line-height: 9px;
    font-size: 14px;
}

#field_submit input[type="submit"] {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FDD805), color-stop(1, #FBCA00));
    background: -moz-linear-gradient(center top, #FDD805 5%, #FBCA00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FDD805', endColorstr='#FBCA00');
    background-color: #FDD805;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    border: none;
    display: inline-block;
    color: #254663;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 77px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
}

#field_submit input[type="submit"]:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FBCA00), color-stop(1, #ff0000));
    background: -moz-linear-gradient(center top, #FBCA00 5%, #FDD805 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FBCA00', endColorstr='#FDD805 ');
    background-color: #FBCA00;
}

#field_submit input[type="submit"]:active {
    position: relative;
    top: 1px;
}

#show_callback {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FDD805), color-stop(1, #FBCA00));
    background: -moz-linear-gradient(center top, #FDD805 5%, #FBCA00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FDD805', endColorstr='#FBCA00');
    background-color: #FDD805;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: none;
    display: inline-block;
    color: #254663;
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
    padding: 6px 40px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.7);
    -moz-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.7);
    box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.7);
}

#show_callback:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #F4F9FD), color-stop(1, #C2E3F3));
    background: -moz-linear-gradient(center top, #F4F9FD 5%, #C2E3F3 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#F4F9FD', endColorstr='#C2E3F3');
    background-color: #C2E3F3;
    -webkit-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
    -moz-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
    box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
}

.popup {
    display: none;
    position: absolute;
}

.trigger {
    display: block;
    position: relative;
    cursor: pointer;
}

.popup {
    width: 244px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #F4F9FD), color-stop(1, #C2E3F3));
    background: -moz-linear-gradient(center top, #F4F9FD 5%, #C2E3F3 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#F4F9FD', endColorstr='#C2E3F3');
    background-color: #C2E3F3;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
    -moz-box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
    box-shadow: 0px 0px 8px rgba(175, 204, 216, 0.9);
    color: #254663;
}

.popup span {
    display: block;
    padding: 10px;
    text-align: left;
    font-size: 13px;
    clear: both;
    overflow: hidden;
}

.popup span a {
    color: #254663;
    display: block;
    float: right;
}

.popup span strong {
    font-size: 16px;
}

.popup span strong {
    font-size: 16px;
}

.pretty img {
    background: #0C202E;
    padding: 2px;
    margin: 8px 0;
}

.siner ul.imggal {
    margin: 10px 0;
    overflow: hidden;
    display: block;
}

.siner ul.imggal li {
    padding: 0;
    background: none;
    float: left;
}

.service-block {
    background-color: #EFF9FF;
    display: table-cell;
    width: 50%;
    padding: 10px 44px 36px;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.service-block__title {
    color: #191919;
    font-size: 23px;
    line-height: 57px;
    font-weight: 400;
    padding-left: 35px;
    background-image: url(../images/service_block_title_icon.svg);
    background-repeat: no-repeat;
    -webkit-background-size: 24px;
    background-size: 24px;
    background-position: left center;
}

.service-block__text ul {
    list-style: disc;
    margin: 20px 0 0 35px;
}

.service-block__text ul li {
    padding: 0 0 10px;
    line-height: 18px;
}

#userForm {
    background: none repeat scroll 0 0 #B6DCE7;
    border-radius: 6px;
    display: block;
    margin: 15px 0;
    padding: 10px;
}

#userForm input,
#userForm textarea {
    border-color: #254663;
    border-radius: 5px 5px 5px 5px;
    border-width: 1px;
    box-shadow: 0 0 3px rgba(50, 50, 50, 0.45) inset;
    padding: 8px;
    text-align: left;
    width: 333px;
}

#userForm input.rsform-error,
#userForm textarea.rsform-error {
    box-shadow: 0 0 2px #FF0000 inset;
}

.rsform-block {
    clear: both;
    margin: 0 0 15px;
    overflow: hidden;
}

#userForm div.formCaption {
    color: #254663;
    display: block;
    float: left;
    font-size: 13px;
    font-style: normal;
    font-weight: bold;
    margin: 4px 0 15px;
    min-height: 12px;
    width: 30%;
}

#userForm div.formCaption strong.formRequired {
    font-weight: bold;
    color: #ffa700;
}

#userForm input[type="submit"] {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FDD805), color-stop(1, #FBCA00));
    background: -moz-linear-gradient(center top, #FDD805 5%, #FBCA00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FDD805', endColorstr='#FBCA00');
    background-color: #FDD805;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    border: none;
    text-align: center;
    display: inline-block;
    color: #254663;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 77px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
    box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
}

#userForm input[type="submit"]:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FBCA00), color-stop(1, #ff0000));
    background: -moz-linear-gradient(center top, #FBCA00 5%, #FDD805 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FBCA00', endColorstr='#FDD805 ');
    background-color: #FBCA00;
}

#userForm input[type="submit"]:active {
    position: relative;
    top: 1px;
}

.rsform-block-kod img {
    float: left;
    margin: 0 10px 0 0;
}

#userForm .formError {
    color: #CF4D4D;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
}

.sci {
    clear: both;
    overflow: hidden;
    padding: 0 0 20px;
}

.category-img {
    float: left;
    margin: 20px 10px 0 0;
    width: 280px;
}

.cat .category-desc {
    float: left;
    margin: 0;
    width: 310px;
}

.siner .category-desc ul {
    font-size: 13px;
    line-height: 17px;
    margin: 12px 0;
}

.siner .category-desc ul li {
    padding: 0 4px 5px 25px;
}

.siner .cat h3 {
    color: #343C43;
    font-size: 18px;
}

.cat {
    clear: both;
    overflow: hidden;
    padding: 15px 0 0;
}

.items-row {
    padding: 0 0 7px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    position: relative;
}

.b_card_hover {
    padding: 10px;
    margin: 0;
    min-height: auto;
    height: 100%;
}

.b_card .b_card_hover {
    background: #fff;
    -webkit-box-shadow: 0 0 4px rgba(50, 58, 77, .29);
    -moz-box-shadow: 0 0 4px rgba(50, 58, 77, .29);
    box-shadow: 0 0 4px rgba(50, 58, 77, .29);
}

.b_gallery {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.b_gallery img {
    max-height: 202px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.siner h2.car_title {
    color: #000;
    margin: 8px 0 10px;
    background: none;
    padding: 0;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-align: left;
    height: 40px;
    overflow: hidden;
}

.siner .car_char {
    min-height: 105px;
}

.b_car_desc {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 330px;
    text-align: left;
}

.b_car_desc_body {
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.05em;
}


/*.b_car_desc_body.rigth {
text-align: right;
}*/

.b_car_desc_name {
    color: #7b7b7b;
}

.b_car_desc_value {
    color: #212121;
    font-weight: 600;
    font-size: 13px;
}

.b_car_desc_price {
    padding: 7px 0 0;
    border-top: 1px solid #adadad;
    margin: 18px 0 0px;
}

.b_car_desc_price .b_car_desc_body {
    display: flex;
    flex-wrap: wrap;
    line-height: 24px;
}

.b_car_desc_price .b_car_desc_body span {
    display: block;
}

.b_car_desc_price .b_car_desc_body span.b_car_desc_dot {
    margin: auto;
}

.b_car_desc_price .b_car_desc_body span.b_car_desc_value.red {
    color: #D80027;
    font-size: 18px;
}

.img-intro {
    float: left;
    margin: 15px;
    overflow: hidden;
}

.item-bl h2 {
    color: #00518A;
    line-height: 20px;
    padding: 10px 35px 0 0;
}

.item-bl h2 a {
    color: #00518A;
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
}

.item-bl p {
    font-size: 12px;
    font-weight: normal;
    line-height: 19px;
    padding: 5px 35px 0 0;
}

.item-bl {
    background: none repeat scroll 0 0 #E5F0F8;
    clear: both;
    margin: 0 0 20px;
    overflow: hidden;
}

.autopark-shortcode__wrapper {
    margin: 30px 0 30px;
}



body div#form_vopros1 {
    position: absolute;
    top: 80px;
    left: 20px;
}

#form_border {
    position: absolute;
    z-index: 1001;
    width: 29px;
    height: 33px;
    opacity: 0;
    filter: progid: DXImageTransform.Microsoft.Alpha(opacity=0);
    z-index: 1001;
    background: #F8FAFC;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    border: 1px solid #05131e;
}

#form_vopros {
    position: absolute;
    z-index: 1002;
    width: 300px;
    height: 416px;
    overflow: hidden;
    display: none;
    z-index: 1002;
    /*opacity: 0;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);*/
    font-size: 12px;
    line-height: 1.3;
}

#form_vopros #form_cb form {
    margin: 0;
}

#form_vopros #form_cb .powered {
    position: absolute;
    bottom: 0;
    right: 6px;
    text-align: right;
    font-size: 11px;
}

#form_vopros #form_cb .powered a {
    color: #ccc;
}

#form_vopros #form_cb .field_input {
    margin: 0 0 0 0;
}

#form_vopros #form_cb .field_input.auto {
    display: none;
}

#form_vopros #form_cb .field_input span,
.field_kcaptcha span {
    color: #254663;
    display: block;
    font-size: 13px;
    margin: 0 0 0 15px;
}

#form_vopros #form_cb .field_input .input_fon {
    margin: 0;
    padding: 4px 15px 7px;
}

#form_vopros #form_cb .field_input .input_fon .input_cb {
    border-color: #254663;
    border-radius: 5px 5px 5px 5px;
    border-width: 1px;
    box-shadow: 0 0 3px rgba(50, 50, 50, 0.45) inset;
    padding: 8px;
    text-align: left;
    width: 243px;
}

.field_kcaptcha img {
    float: right;
    margin-right: 20px;
}

.input_kcaptcha {
    float: left;
    padding: 9px 15px;
    width: 100px;
}

#form_vopros .input_kcaptcha .input_cb_kcaptcha {
    width: 80px;
    border-color: #254663;
    border-radius: 5px 5px 5px 5px;
    border-width: 1px;
    box-shadow: 0 0 3px rgba(50, 50, 50, 0.45) inset;
    padding: 8px;
    text-align: left;
}

#form_vopros #form_cb #field_submit {
    margin: 15px 15px 0;
}

#form_vopros #bg_bottom {
    background: url('../images/fon_bottom.png') no-repeat transparent;
    height: 25px;
    width: 288px;
}

#form_vopros #form_close {
    height: 20px;
    margin: 5px 9px 0 0;
    text-align: right;
}

#form_vopros .clr {
    clear: both;
    height: 0px;
}

.siner h2 {
    font-size: 17px;
    color: #254663;
    font-size: 18px;
    color: #254663;
    margin: 25px 0 10px;
    padding: 10px;
    background: #c5c5c5;
}

.tarif {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    vertical-align: top;
}

.tarif th {
    border-bottom: 1px solid #11283C;
    background: #11283C;
    font-weight: bold;
    padding: 5px 10px;
    text-align: left;
    color: #FDD805;
    vertical-align: top;
}

.tarif p {
    margin: 0;
}

.tarif td {
    border-bottom: 1px solid #11283C;
    text-align: left;
    font-weight: normal;
    padding: 5px 10px;
}

.tarif tr:hover,
.tarif tr:hover td,
.tarif td:hover {
    background: #eef3f5;
}

hr.preview-block {
    display: none !important;
}

.price {
    width: 100%;
}

.price td {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
    text-indent: 0;
    padding: 7px 4px 7px;
    border-bottom: 1px dashed #717171;
}

.price td:hover,
.price tr:hover td {
    background: #D6E0FD;
}

.siner .price td p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    text-indent: 0;
}

.calc_container {
    padding: 20px;
}

#yandex_map_info_new div {
    padding: 0 0 5px;
    font-weight: bold;
}

#yandex_map_info_new div span {
    font-weight: normal;
}

#info_price {
    display: none;
    margin: 0 0 20px;
}

#info_price table {
    text-align: center;
}

#info_price table tr td,
#info_price table tr th {
    padding: 3px 20px 3px 0;
}

.modal {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0px none;
}

.modal-dialog.w420 {
    margin: 100px auto;
    width: 420px;
    position: relative;
}

.modal-content {
    background-color: #FFF;
    border: medium none;
    position: relative;
    background-clip: padding-box;
    outline: 0px none;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    /*font: 16px/1.5em "Open Sans",sans-serif;*/
}

.modal-content.modal-lh {
    background-color: #256faf;
}

.modal-content.modal-lh .modal-body {
    background: none;
}

.modal-lh h3 {
    color: #fbca00;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 0 0 5px;
    margin: 0;
}

.modal-lh .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    margin: 10px 0 25px;
}

.modal-lh .close,
.modal-lh .close {
    color: #cfd7de;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
    outline: none;
}

.modal-lh input.form-control {
    height: 44px;
}

.modal-lh .buttons .btn {
    padding: 0 10px;
    font-size: 15px;
    outline: none;
    margin: 5px 0 0;
}

.ft-sub {
    color: #eee;
    font-size: 16px;
    font-weight: 100;
    line-height: 23px;
    padding: 0;
    text-shadow: 1px 1px 1px #1a3954;
    text-align: center;
}

.fd {
    font-size: 13px;
    text-align: center;
}

.modal-body {
    padding: 30px 40px;
    position: relative;
    background: #CFD7DE;
}

button.close {
    padding: 0px;
    cursor: pointer;
    background: transparent none repeat scroll 0px 0px;
    border: 0px none;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0px 1px 0px #FFF;
    opacity: 0.2;
}

.close {
    color: #000;
    font-size: 44px;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
    opacity: 1;
    position: absolute;
    right: 12px;
    text-shadow: none;
    top: 9px;
    width: 28px;
    z-index: 5;
}

.lead {
    margin-bottom: 20px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    color: #111;
}

.top-menu {
    margin: 0 -15px;
    z-index: 4;
    position: relative;
}

.top-menu .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

.nav-tabs {
    border-bottom: 1px solid #333;
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    /*overflow: hidden;*/
    display: flex;
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
    position: relative;
    display: block;
}

.nav-tabs>li>a {
    margin-right: 5px;
    line-height: 1.42857143;
    position: relative;
    display: block;
    padding: 12px 25px;
    color: #ffffff;
    font-size: 17px;
    background-color: #648fb5;
    font-weight: 400;
    border: none;
    border-radius: 0;
}

.nav>li.active>a,
.nav>li.active>a:focus,
.nav>li.active>a:hover {
    text-decoration: none;
    background-color: #D80027;
    color: #ffffff;
    position: relative;
    text-align: center;
    transition: all 0.25s ease 0s;
    border: none;
    border-radius: 0;
}

.nav>li {
    position: relative;
}


.nav>li .sub_menu {
    display: none;
}


.nav>li .sub_menu {
    position: absolute;
    box-shadow: 0 2px 25px rgb(69 69 69 / 25%);
    background-color: #f8fcff;
    z-index: 2;
    top: 100% 100%;
    left: auto;
    right: auto;
    min-width: 300px;
    display: none;
    max-height: calc(100vh - 200px);
    overflow: auto;
}

.nav>li:hover .sub_menu {
    display: block;
}

.sub_menu .top-sub-menu {
    margin: 0;
    background: #222;
}



.sub_menu .top-sub-menu a {
    display: block;
    color: #b8b8b8;
    padding: 11px 18px;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.1s ease-in-out 0s;
    font-size: 14px;
}

.sub_menu .top-sub-menu a:hover {
    background: #9d9d9d;
    color: #000;
}


.nav-tabs>li>a:hover {
    text-decoration: none;
    background-color: #236194;
}

.tab-content {
    overflow: hidden;
    padding: 20px 10px 20px;
    clear: both;
    background: transparent url("../img/bgslide.png") repeat scroll 0px 0px;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.top-title {
    color: #ffc700;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 25px;
    padding: 25px 0 20px;
    text-align: center;
}

.section-title {
    color: #ffc700;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 25px;
    padding: 10px 0 30px;
    text-align: center;
}

.price_list_old {
    color: #585858;
    font-size: 16px;
    display: inline !important;
    font-weight: 400;
    padding: 0 6px 0 0;
    position: relative;
}

.price_list_old::after {
    content: '';
    height: 1px;
    border-top: 1px solid #585858;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: -2px;
    width: 100%;
}

.clients-block img {
    max-height: 230px;
}



.section-plus {
    margin: 0 0 0;
    background: url(../images/bg-corporate3.jpg) top center no-repeat #0662A9;
    padding: 0 0 30px;
}

.plus-block {
    margin: 0 5%;
    text-align: left;
}

.section-plus .section-title {
    color: #ffc700;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 25px;
    padding: 10px 0 30px;
    text-align: center;
}

.section-plus ul li {
    background: rgba(0, 0, 0, 0) url(../img/check.png) no-repeat scroll 0 8px;
    padding: 1px 0 9px 19px;
    font-size: 14px;
    font-weight: 400;
}

.section-plus ul li.advantages-title {
    background: none;
    font-weight: 400;
    padding: 1px 0 5px 19px;
    font-size: 18px;
    line-height: 30px;
}

.section-plus ul li a {
    color: #fff;
    font-weight: 400;
}

.section-partpers-slider {
    margin: 0px 0 50px;
    overflow: hidden;
}

.section-partpers-slider .f-title,
.section-plus .f-title {
    color: #000;
    text-align: center;
    font-size: 32px;
    line-height: 35px;
    font-weight: 400;
    padding: 38px 0;
}

.section-plus .f-title {
    color: #fff;
    padding: 38px 0;
}

.partpers-slider-box img {
    margin: 5px 15px;
}

.section-ordering {
    padding: 70px 0 80px;
    background-image: url(../images/car.webp), linear-gradient(90.16deg, #F3F7FA 0.13%, #F3F7FA 99.86%);
    background-repeat: no-repeat;
    background-position: right bottom;
    margin: 0;
    overflow: hidden;
}

.section-ordering .f-title {
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #333333;
    margin-bottom: 40px;
}

.icon-blok-inner i {
    display: block;
    margin: 0 auto;
    text-align: center;
    height: 92px;
    line-height: 100px;
}

.icon-blok-inner .desc-icon {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}


/* REDESING PRODUCT CARD */

.image-active {
    border: 2px solid #1585DB;
    box-sizing: border-box;
}

.right_content .order_button {
    margin-top: 12px;
}

.actual_price {
    font-weight: bold;
    font-size: 34px;
    line-height: 22px;
    color: #333333;
    margin-right: 15px;
    line-height: normal;
}

.past_price {
    font-size: 22px;
    line-height: 22px;
    text-decoration-line: line-through;
    color: #888888;
}

.airport,
.railway {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #636363;
}

.railway {
    margin-top: 12px;
}

.taxi_drive,
.time_info {
    margin-top: 18px;
}

.time_info {
    padding: 3px 10px;
    background: #d2d2d2;
}

.time_info img {
    margin-bottom: 3px;
    margin-right: 5px;
}

.taxi_drive .dot {
    flex-grow: 1;
    border-bottom: 2px dotted #E5E5E5;
    margin-bottom: 5px;
}

.new_callbutton {
    padding: 14px 37px;
    width: auto !important;
    height: auto !important;
    text-transform: none !important;
    line-height: normal;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid transparent;
}

.new_callbutton:hover {
    text-decoration: none;
    color: #1585DB !important;
    background: #fff;
    border: 1px solid #1585DB;
}

.siner .car_param-title {
    text-align: left;
    padding: 0;
    margin-top: 35px;
    margin-bottom: 15px;
}

.param_block {
    display: flex;
}

.param_block:nth-child(2n)>div {
    background: #F1F1F1;
}

.param_block:nth-child(2n+1)>div {
    background: #E6E6E6;
}

.param-tale {
    flex-basis: 50%;
    padding: 8px 12px;
    border: 1px solid #fff;
}

.siner .product_title {
    text-align: left;
    font-weight: bold;
    font-size: 35px;
    color: #333333;
    margin-bottom: 10px;
    padding-bottom: 3px;
}

.siner .header_subtitle {
    margin: 2px 0 10px;
    font-size: 18px;
    line-height: 22px;
    color: var(--dark);
}

.gallery-top>.swiper-wrapper {
    height: 540px;
}

.gallery-thumbs {
    margin-top: 50px;
}

.gallery-thumbs .swiper-slide {
    cursor: pointer;
}

.swiper_custom-nav {
    z-index: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    displaY: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.swiper_custom-nav .button-prev {
    margin-left: 15px;
}

.swiper_custom-nav .button-next {
    margin-right: 15px;
}

.row-full {
    width: 100vw;
    position: relative;
    margin-left: -50vw !important;
    left: 50%;
}


/* табы */

.jm-tabs-menu #jm-tabs1,
.jm-tabs-menu #jm-tabs2 {
    display: none !important;
}

.accord-tab-pane {
    margin-top: 10px;
    padding-left: 5px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s;
}

.accord-tab-pane-active {
    visibility: visible;
    opacity: 1;
}

.jm-tabs-widget {
    position: relative;
}

.jm-tabs-widget .jm-tabs-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 57px;
    border-bottom: 1px solid #DADADA;
}

.jm-tabs-widget .jm-tabs-menu li {
    color: #333333;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease 0s;
    border-bottom: 3px solid transparent;
    display: inline-block;
    padding: 15px 30px;
    font-weight: 550;
    font-size: 15px;
}

.jm-tabs-widget .jm-tabs-menu li.active {
    color: #1585DB;
    border-bottom: 3px solid #1585DB;
}

.jm-tabs-contener {
    margin-top: 30px;
    width: 600px;
}

.jm-tabs-content ul {
    margin: 0;
}

.jm-tabs-content a {
    color: #666;
    font: 500 14px arial;
    text-decoration: none;
}

.inputs>.input {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.inputs>.input>.dot {
    flex-grow: 1;
    border-bottom: 1px dashed #D0D0D0;
    margin-bottom: 3px;
}

.inputs>.input>.value {
    flex-basis: 20%;
}

.jm-tabs-contener .tabs-title {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

.tab_accordion {
    display: none;
}


/* табы */

.avto_description {
    margin-top: 25px;
}

.tabs_row {
    margin-top: 30px;
}

.mainpage .item-page.contact {
    margin-top: 40px;
}


/* REDESING PRODUCT CARD END*/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {
    .n-block-price {
        font-size: 14px;
        line-height: 19px;
        padding: 0 5px 25px;
    }

    .usl {
        min-height: 190px;
    }

    .gallery-thumbs {
        display: none;
    }

    .right_content {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .section-partpers-slider .f-title {
        color: #000;
        text-align: center;
        font-size: 28px;
        font-weight: 400;
    }

    .modal-dialog.w420 {
        margin: 100px auto;
        width: 310px;
        position: relative;
    }

    .form-control {
        width: 100%;
    }

    .modal-body {
        padding: 17px 15px;
    }

    .n-block-price {
        font-size: 14px;
        line-height: 19px;
        padding: 0 5px 25px;
    }

    /*Disable Animation on Mobile Devices*/
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

    .jm-tabs-contener {
        width: auto;
    }

    .siner .product_title {
        margin-bottom: 2px;
        font-size: 25px;
        margin-top: 5px;
        line-height: 28px;
    }

    .siner .header_subtitle {
        margin: 2px 0 10px;
        font-size: 15px;
        line-height: 17px;
        color: var(--dark);
    }

    .gallery-top>.swiper-wrapper {
        height: 440px;
    }
}

.navbar-inverse .navbar-toggle {
    border-color: #2e6da4;
    background: #2e6da4;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    border-color: #2e6da4;
    background: #5b9bd2;
}

.tel-basic img {
    width: 31px;
    position: relative;
    top: -3px;
}

.whatsapp img {
    position: relative;
    top: -5px;
}

.tel a.whatsapp>span {
    position: relative;
    top: -5px;
}

@media only screen and (max-width: 767px) {
    .htitle {
        display: none;
    }

    html {
        height: auto;
        background: #fff;
    }

    .tel a.m-hiden {
        display: none;
    }

    .navbar.navbar-inverse.bs-docs-nav {
        display: none;
    }

    .section-header {
        margin-top: 50px;
        min-height: 1px;
        max-height: 1px;
    }

    .section-header .container {
        display: none;
    }

    .navbar-brand {
        float: left;
        height: 50px;
        padding: 11px 5px;
        font-size: 18px;
        line-height: 20px;
        margin-left: 10px;
    }

    .burger {
        height: 50px;
        width: 50px;
        position: relative;
        cursor: pointer;
    }

    .burger .svg-burger,
    .burger .svg-inline-burger {
        width: 18px;
        height: 16px;
        min-width: 18px;
        min-height: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -8px 0 0 -9px;
    }

    .burger .svg-close,
    .burger .svg-inline-close {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -8px 0 0 -8px;
        display: none;
    }

    .burger.c .svg-close,
    .burger.c .svg-inline-close {
        display: inline;
    }

    .burger.c .svg-burger,
    .burger.c .svg-inline-burger {
        display: none;
    }

    .logo {
        display: none;
    }

    .tel {
        margin: 58px 0 10px;
        overflow: hidden;
        text-align: center;
        position: relative;
        z-index: 1001;
    }

    .tel a {
        text-align: center;
        margin: 6px 0 4px 0;
        display: block;
    }

    .navbar-top {
        margin: 0 -15px;
        background: #254663;
    }

    .nav>li {
        position: relative;
        display: block;
        border-bottom: 1px solid #3f5b73;
    }

    .navbar-inverse .navbar-top>li>a {
        color: #fff;
        font-size: 15px;
        padding: 14px 20px;
        /* font-style: italic; */
    }

    .navbar-inverse .navbar-top>li.selected>a {
        background-color: #D80027;
    }

    .nav-tabs>li:nth-child(1) {
        width: 50%;
    }

    .nav-tabs>li:nth-child(2) {
        width: 50%;
    }

    .nav-tabs>li:nth-child(3) {
        width: 50%;
    }

    .nav-tabs>li:nth-child(4) {
        width: 50%;
    }

    .nav-tabs>li:nth-child(5) {
        width: 100%;
    }

    .nav-tabs>li>a {
        margin-right: 0;
    }

    .nav-tabs>li>a {
        padding: 12px 11px;
        font-size: 14px;
        margin: 0px 4px 3px 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .siner {
        padding: 5px 10px;
        color: #343c43;
        text-align: left;
    }

    .siner .home-page-servises .f-title {
        color: #000;
        text-align: center;
        font-size: 20px;
        line-height: 25px;
        font-weight: 500;
        padding: 20px 0 10px;
        margin: 0;
    }

    .siner .home-page-servises p.text-title {
        font-weight: bold;
        font-size: 15px;
        line-height: 16px;
        height: auto;
        padding: 14px 0 0;
    }

    .section-ordering .f-title {
        color: #000;
        text-align: center;
        font-size: 25px;
        line-height: 28px;
        font-weight: 400;
        padding: 30px 0 15px;
    }

    .section-plus .f-title {
        color: #fff;
        padding: 32px 0;
        font-size: 27px;
    }

    .section-plus ul {
        padding: 0 0 30px;
    }

    .calc_container {
        padding: 0;
    }

    .usl {
        min-height: auto;
    }

    .section-clients {
        display: none;
    }

    #footer .right {
        color: #ADB9B9;
        line-height: 29px;
        padding: 7px;
        font-size: 15px;
        text-align: center;
    }

    #footer .right .whatsapp {
        color: #fff;
    }

    .siner .product_title {
        line-height: normal;
    }
}

@media only screen and (max-width: 480px) {
    .n-block-price {
        font-size: 14px;
        line-height: 19px;
        padding: 0 5px 25px;
    }

    .htitle {
        font-size: 0.95em;
        padding: 18px 0 10px;
        text-align: center;
    }

    .gallery-top>.swiper-wrapper {
        height: 300px;
    }
}

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

    /* скрываем вкладки */
    .tabs {
        display: none;
    }

    /* показываем элементы аккордеона */
    .siner .tab_accordion {
        position: relative;
        background-color: #E7E7E7;
        font-weight: 400;
        font-size: 16px;
        text-align: left;
        color: #333;
        margin: 0;
        padding: 20px 15px !important;
        line-height: normal !important;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .jm-tabs-contener .tabs-title {
        margin-top: 20px;
    }

    /* панели аккордеона при наведении */
    .tab_accordion:hover {
        background-color: #1585DB;
    }

    /* переключатель вкладок, положение вниз */
    .tab_accordion:before {
        content: '';
        height: 8px;
        width: 8px;
        display: block;
        border: 2px solid #c7c2c2;
        border-right-width: 0;
        border-top-width: 0;
        color: #333333;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: absolute;
        right: 20px;
        top: 24px
    }

    /* состояние активных панелей */
    .siner .tab_accordion.d_active {
        background-color: #1585DB;
        color: #fff;
    }

    /* активный переключатель, положение вверх */
    .d_active.tab_accordion:before {
        border: 2px solid #fff;
        border-left-width: 0;
        border-bottom-width: 0;
        top: 26px
    }

    .param_block>.param-tale:first-child {
        flex-basis: 45%;
    }

    .param_block>.param-tale:last-child {
        flex-basis: 55%;
    }

    .inputs>.input>.value {
        flex-basis: auto;
    }

    .gallery-top>.swiper-wrapper {
        height: 250px;
    }
}

@media only screen and (max-width: 320px) {
    .htitle {
        font-size: 0.95em;
        padding: 18px 0 10px;
        text-align: center;
    }

    .n-block-price {
        font-size: 14px;
        line-height: 19px;
        padding: 0 5px 25px;
    }

    .gallery-top>.swiper-wrapper {
        height: 200px;
    }
}

.lh-pulsator-phone {
    position: fixed;
    bottom: 10%;
    right: 3%;
    width: 100px;
    height: 100px;
    background-color: transparent;
    cursor: pointer;
    z-index: 900 !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: 'visibility .5s, opacity .25s';
    -moz-transition: 'visibility .5s, opacity .25s';
    -o-transition: 'visibility .5s, opacity .25s';
    transition: 'visibility .5s, opacity .25s';
    opacity: 0.4;
    /*display: none;*/
}

.lh-pulsator-phone:hover {
    opacity: .95;
}

.lh-pulsator-phone:hover .lh-pulsator-circle {
    border-color: #2e6da4;
    opacity: .5;
    -webkit-animation: roistat-lh-circle-anim 1s infinite ease-in-out;
    -moz-animation: roistat-lh-circle-anim 1s infinite ease-in-out;
    -ms-animation: roistat-lh-circle-anim 1s infinite ease-in-out;
    -o-animation: roistat-lh-circle-anim 1s infinite ease-in-out;
    animation: roistat-lh-circle-anim 1s infinite ease-in-out;
}

.lh-pulsator-phone:hover .lh-pulsator-img {
    opacity: 1;
    -webkit-animation: roistat-lh-img-anim 1s infinite ease-in-out;
    -moz-animation: roistat-lh-img-anim 1s infinite ease-in-out;
    -ms-animation: roistat-lh-img-anim 1s infinite ease-in-out;
    -o-animation: roistat-lh-img-anim 1s infinite ease-in-out;
    animation: roistat-lh-img-anim 1s infinite ease-in-out;
}

.lh-pulsator-circle {
    width: 56px;
    height: 56px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    /*  border: 2px solid  #2e6da4;*/
    opacity: .5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: roistat-lh-circle-anim 2.2s infinite ease-in-out;
    -moz-animation: roistat-lh-circle-anim 2.2s infinite ease-in-out;
    -ms-animation: roistat-lh-circle-anim 2.2s infinite ease-in-out;
    -o-animation: roistat-lh-circle-anim 2.2s infinite ease-in-out;
    animation: roistat-lh-circle-anim 2.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 2;
}

.lh-pulsator-fill {
    width: 56px;
    height: 56px;
    top: 20px;
    left: 20px;
    position: absolute;
    background: linear-gradient(to bottom left, #fbc019, #ff6a00);
    background-color: #ff6a00;
    background-size: 59px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.lh-pulsator-img {
    width: 56px;
    height: 56px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-image: url(../img/phone.png);
    background-position: center center;
    background-repeat: no-repeat;
    opacity: .7;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: roistat-lh-img-anim 0s infinite ease-in-out;
    -moz-animation: roistat-lh-img-anim 0s infinite ease-in-out;
    -ms-animation: roistat-lh-img-anim 0s infinite ease-in-out;
    -o-animation: roistat-lh-img-anim 0s infinite ease-in-out;
    animation: roistat-lh-img-anim 0s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@-moz-keyframes roistat-lh-circle-anim {
    0% {
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: 0.1;
    }

    50% {
        opacity: 1;
        -moz-opacity: 1;
        -webkit-opacity: 1;
        -o-opacity: 1;
    }

    100% {
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: 0.1;
    }
}

@-webkit-keyframes roistat-lh-circle-anim {
    0% {
        -webkit-opacity: 0.1;
    }

    50% {
        -webkit-opacity: 1;
    }

    100% {
        -webkit-opacity: 0.1;
    }
}

@-o-keyframes roistat-lh-circle-anim {
    0% {
        -o-opacity: 0.1;
    }

    50% {
        -o-opacity: 1;
    }

    100% {
        -o-opacity: 0.1;
    }
}

@keyframes roistat-lh-circle-anim {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

@keyframes roistat-lh-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    25% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    35% {
        transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    45% {
        transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    55% {
        transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    65% {
        transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    75% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    100% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }
}

@-moz-keyframes roistat-lh-img-anim {
    0% {
        -moz-transform: rotate(0) scale(1) skew(0.017rad);
    }

    25% {
        -moz-transform: rotate(0) scale(1) skew(0.017rad);
    }

    35% {
        -moz-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    45% {
        -moz-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    55% {
        -moz-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    65% {
        -moz-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    75% {
        -moz-transform: rotate(0) scale(1) skew(0.017rad);
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(0.017rad);
    }
}

@-webkit-keyframes roistat-lh-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(0.017rad);
    }

    25% {
        -webkit-transform: rotate(0) scale(1) skew(0.017rad);
    }

    35% {
        -webkit-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    45% {
        -webkit-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    55% {
        -webkit-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    65% {
        -webkit-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    75% {
        -webkit-transform: rotate(0) scale(1) skew(0.017rad);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(0.017rad);
    }
}

@-o-keyframes roistat-lh-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(0.017rad);
    }

    25% {
        -o-transform: rotate(0) scale(1) skew(0.017rad);
    }

    35% {
        -o-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    45% {
        -o-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    55% {
        -o-transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    65% {
        -o-transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    75% {
        -o-transform: rotate(0) scale(1) skew(0.017rad);
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(0.017rad);
    }
}

@media only screen and (max-width: 768px) {
    .lh-pulsator-phone {
        opacity: .95;
        position: fixed;
        bottom: 0;
        left: 3%;
        right: auto;
    }
}

@media only screen and (max-width: 760px) {
    .tel a.whatsapp>span span {
        display: none;
    }

    #topslider {
        height: 457px;
    }

    .slide-viewport .slide {
        overflow: hidden;
    }

    #topslider .slide .body {
        padding: 40px 1.25em 0;
        z-index: 1;
        width: auto;
    }

    #topslider .slide .body:before {
        width: 560px;
        height: 420px;
        left: -152px;
        top: 41px;
    }

    #topslider .slide-viewport .slide:before {
        height: 66%;
    }

    #topslider .slide-viewport .slide:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 33%;
        left: 0;
        bottom: 0;
        background-image: -webkit-linear-gradient(top, rgba(50, 36, 30, 0) 0%, rgba(30, 36, 51, 0.7) 100%);
        background-image: linear-gradient(to bottom, rgba(50, 36, 30, 0) 0%, rgba(30, 36, 51, 0.7) 100%);
    }

    #topslider .slide ul {
        font-weight: 400;
        font-size: 18px;
        line-height: 18px;
    }

    #topslider .slide li {
        position: relative;
        margin-bottom: 15px;
    }

    #topslider .slide li:before {
        top: 0;
        transform: unset;
    }

    #topslider .slide H2 {
        font-weight: 400;
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    #topslider .slide H2 I {
        left: -2px;
        top: -84px;
        background-position: 0 50%;
        -webkit-transform: scale(0.88);
        transform: scale(0.88);
    }

    #topslider .slide-pager {
        height: 6.5em;
    }

    #topslider .slide-pager A,
    #topslider .slide-pager A.active,
    #topslider .slide-pager .body:after,
    #topslider .slide-pager .body:before {
        background-color: transparent;
    }

    #topslider .slide-pager I {
        margin: 0;
        position: relative;
    }

    #topslider .slide .ybutt {
        padding: 0 22px 0 23px;
    }

    #topslider .mtel {
        display: block;
    }

    #topslider .slide-click,
    #topslider .hand,
    #topslider .slide H2 I,
    #topslider .slide-pager SPAN {
        display: none;
    }

    #topslider .slick-dots {
        bottom: 30px;
    }
}

.b_card {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
}

.container {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .section-content {
        margin: 0;
    }

    .section-content .container {
        padding-right: 5px;
        padding-left: 5px;
    }

    .siner h1 {
        font-size: 23px;
        line-height: 22px;
        padding: 10px 0 10px;
    }

    .jlcontentfieldsfilter {
        margin: 25px 8px 11px;
    }

    .b_card {
        display: block;
        width: 100%;
    }

    .b_card_hover {
        padding: 10px 10px 20px;
        margin: 7px 1px;
        min-height: auto;
    }

    .b_car_desc {
        padding: 0 4px;
        margin: 0 auto;
        max-width: 330px;
    }

    .section-footer-top {
        height: auto;
    }

    .f-title {
        margin: 0;
        padding: 10px 0;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

    .section-footer-top .ybutt {
        margin: 10px 0 10px;
        background: #518dc1;
        display: block;
        cursor: pointer;
    }

    .footer-nav .col-nav {
        float: none;
    }

    .footer-nav .col-nav:nth-of-type(1) {
        width: 100%;
        clear: both;
    }

    .footer-nav .col-nav:nth-of-type(2) {
        width: 100%;
        clear: both;
    }

    .footer-nav .col-nav:nth-of-type(3) {
        width: 100%;
        clear: both;
    }

    .footer-nav .col-nav:nth-of-type(4) {
        width: 100%;
        clear: both;
    }

    .footer-action {
        border-left: none;
        padding-left: 14px;
        margin: 5px 0;
    }

    .footer-copyright {
        width: 100%;
    }
}

.svg {
    top: -1px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    min-width: 30px;
    min-height: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
}

#mobilemenu.leftside {
    display: none;
}

@media (max-width: 767px) {

    .container.homeup,
    .cat_description {
        display: none;
    }

    #logo {
        display: none;
    }

    header .buttom-search {
        display: none;
    }

    #mobileheader.visible-xs.visible-sm {
        display: block !important;
    }

    .logo_m {
        max-width: 200px;
        height: 50px;
        padding: 10px 5px;
        font-size: 18px;
        line-height: 20px;
    }

    .logo_m img {
        max-height: 100%;
    }

    /* mobile headers */
    #mobileheader {
        margin: 0;
        padding: 0;
        height: 52px;
    }

    #mobileheader.fixed {
        overflow: visible;
    }

    #mobileheader {
        z-index: 1000;
        top: 0;
        position: fixed;
        width: 100%;
    }

    .wrapper1.mfixed_view_scroll_top>div#mobileheader {
        top: -110px;
    }

    body .wrapper1.mfixed_Y>div#mobileheader.fixed {
        position: fixed;
        width: 100%;
        z-index: 995;
        top: 0px;
        display: block !important;
    }

    #mobileheader .burger {
        height: 100%;
        width: 58px;
        position: relative;
        cursor: pointer;
    }

    #mobileheader .burger .svg-burger,
    #mobileheader .burger .svg-inline-burger {
        width: 18px;
        height: 16px;
        min-width: 18px;
        min-height: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -8px 0 0 -9px;
    }

    #mobileheader .burger .svg-close,
    #mobileheader .burger .svg-inline-close {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -8px 0 0 -8px;
        display: none;
    }

    #mobileheader .burger.c .svg-close,
    #mobileheader .burger.c .svg-inline-close {
        display: inline;
    }

    #mobileheader .burger.c .svg-burger,
    #mobileheader .burger.c .svg-inline-burger {
        display: none;
    }

    #mobileheader .title-block {
        height: 100%;
        padding: 0 5px 0 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        line-height: 60px;
    }

    #mobileheader .logo-block {
        height: 100%;
        padding: 0 5px 0 0;
    }

    #mobileheader .logo {
        max-width: 156px;
        line-height: 60px;
    }

    #mobileheader .logo img {
        max-height: 100%;
        max-width: 100%;
        width: 100%;
    }

    #mobileheader .right-icons {
        height: 100%;
        padding-right: 5px;
        margin-left: -15px;
    }

    #mobileheader .wrap_icon {
        display: table-cell;
        padding-right: 15px;
        padding-left: 15px;
        vertical-align: middle;
        line-height: 63px;
    }

    #mobileheader .inline-search-show {
        border: none;
        background: none;
        padding: 0;
        top: 1px;
        position: relative;
    }

    .ios #mobileheader .inline-search-show {
        top: 4px;
    }

    #mobileheader .inline-search-show .svg-inline-search {
        top: -4px;
    }

    #mobileheader .basket-link {
        position: relative;
        padding-right: 12px;
    }

    #mobileheader .basket-link:not(.basket) {
        padding-right: 22px;
    }

    #mobileheader .basket-link.compare {
        padding-right: 24px;
    }

    #mobileheader .basket-link .count {
        position: absolute;
        top: -7px;
        left: 16px;
        box-shadow: 0px 0px 0px 2px #fff;
    }

    #mobileheader *[class^=mobileheader-] {
        height: 100%;
        width: 100%;
        color: #222;
    }

    #mobileheader .mobileheader-v1 {
        background: #00558A;
    }

    #mobileheader .mobileheader-v2 {
        color: #fff;
    }

    #mobileheader .mobileheader-v2 .basket-link .count {
        background-color: #fff;
        color: #222;
    }

    #mobileheader .mobileheader-v2 .svg.inline path {
        fill: #fff;
    }

    /* mobile menu */
    #mobilemenu {
        background: #fff;
        z-index: 3002;
        overflow: hidden;
        overflow-y: auto;
        transition: left 0.4s ease 0s, opacity 0.4s ease 0s;
        position: fixed;
    }

    #mobilemenu::-webkit-scrollbar {
        width: 8px;
    }

    #mobilemenu::-webkit-scrollbar-track {
        border-radius: 8px;
    }

    #mobilemenu::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background: #999;
        border: 2px solid #fff;
    }

    #mobilemenu::-webkit-scrollbar-thumb:window-inactive {
        background: #999;
        border: 2px solid #fff;
    }

    #mobilemenu.dropdown {
        top: 64px;
        bottom: 0;
        width: 100%;
        border-top: 1px solid #f2f2f2;
        opacity: 0;
        visibility: hidden;
    }

    #mobilemenu.dropdown.show {
        opacity: 1;
        visibility: visible;
    }

    #mobilemenu.leftside {
        left: -100%;
        top: 0;
        bottom: 0;
        width: 300px;
        max-width: 100%;
    }

    #mobilemenu.leftside.show {
        left: 0;
        box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.45);
    }

    #mobilemenu>.scroller {
        overflow: hidden;
    }

    #mobilemenu>.scroller>.wrap {
        width: 100%;
        transition: transform 0.2s ease-in-out;
        -webkit-transition: transform 0.2s ease-in-out;
        -moz-transition: transform 0.2s ease-in-out;
        -ms-transition: transform 0.2s ease-in-out;
    }

    #mobilemenu-overlay {
        display: none;
        background: #3a3f44;
        opacity: 0.7 !important;
        height: 100%;
        width: 100%;
        position: fixed;
        left: 0px;
        top: 0px;
        z-index: 2999;
    }

    #mobilemenu .dropdown {
        left: 100%;
        top: 0;
        width: 100%;
        border: medium none;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        display: none;
        position: absolute;
        z-index: 5;
        background: #FFF;
        margin: 0;
        padding: 0
    }

    #mobilemenu .expanded>.dropdown {
        display: block;
    }

    #mobilemenu .expanded>.dropdown>div {
        border-bottom: 1px solid #f2f2f2;
    }

    #mobilemenu .expanded>.dropdown .menu_back a {
        font-size: 15px;
        line-height: 18px;
        padding: 22px 20px 23px 57px;
        cursor: pointer;
        position: relative;
    }

    #mobilemenu .expanded>.dropdown .menu_back .svg {
        position: absolute;
        top: 16px;
        left: 13px;
    }

    #mobilemenu .expanded>.dropdown .menu_title {
        font-size: 15px;
        line-height: 18px;
        color: #333;
        font-weight: bold;
        padding: 22px 23px 23px 19px;
        background-color: #fbfbfb;
    }

    #mobilemenu .menu a:hover .svg {
        background-color: transparent;
    }

    #mobilemenu .menu>ul {
        padding: 0;
        margin: 0;
        display: block;
    }

    #mobilemenu .menu ul>li {
        list-style: none;
        display: block;
        margin: 0;
        border-bottom: 1px solid #dcdcdc;
        width: 100%;
        padding: 0;
    }

    #mobilemenu .menu ul li:before {
        display: none;
    }

    #mobilemenu .menu ul>li a {
        padding: 15px 15px 16px 15px;
        display: block;
        position: relative;
    }

    #mobilemenu .menu ul>li.menu_title a {
        padding: 0px;
    }

    #mobilemenu .menu ul>li a.parent {
        padding-right: 46px;
    }

    #mobilemenu .menu ul>li .arrow {
        position: absolute;
        z-index: 1;
        width: 46px;
        top: 0;
        right: 0;
        bottom: 0;
        cursor: pointer;
        padding-left: 8px;
        display: block;
    }

    #mobilemenu .menu ul>li .arrow .svg {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -15px 0 0 -15px;
    }

    #mobilemenu .menu ul>li.selected>a:before {
        content: "";
        position: absolute;
        top: 30px;
        left: 9px;
        width: 4px;
        height: 4px;
        border-radius: 100%;
    }

    #mobilemenu .menu>ul>li>a {
        background: #fff;
        font-size: 16px;
        font-weight: 400;
    }

    #mobilemenu .menu>ul>li.selected>a:before {
        left: 0px;
        top: -1px !important;
        bottom: -1px;
        width: 2px;
        z-index: 1;
        height: inherit;
        border-radius: 0;
    }

    #mobilemenu .menu>ul>li:not(.counters),
    .menu ul>li.selected:not(.counters),
    .menu ul>li.expanded {
        position: initial;
    }

    #mobilemenu .menu>ul>li.counters>a>span {
        padding-right: 25px;
        position: relative;
    }

    #mobilemenu .menu>ul>li.counters .count {
        width: 17px;
        height: 17px;
        line-height: 17px;
        white-space: nowrap;
        font-size: 12px;
        color: #FFF;
        border-radius: 8px;
        text-align: center;
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -8px;
        font-weight: initial;
        left: auto;
    }

    #mobilemenu .menu>ul>li.counters .count.empted {
        background: #969ba5;
    }

    #mobilemenu .menu.middle>ul>li>a {
        padding-left: 57px;
        background: #fbfbfb;
    }

    #mobilemenu .menu.middle a .svg {
        position: absolute;
    }

    #mobilemenu .menu.middle a .svg-cabinet {
        width: 14px;
        min-width: 14px;
        height: 17px;
        min-height: 17px;
        left: 21px;
        top: 22px;
    }

    #mobilemenu .menu.middle a .svg-cabinet-login,
    #mobilemenu .menu.middle a .svg-inline-cabinet {
        width: 16px;
        min-width: 16px;
        height: 17px;
        min-height: 17px;
        left: 21px;
        top: 22px;
    }

    #mobilemenu .menu.middle a .svg-address {
        width: 16px;
        min-width: 16px;
        height: 19px;
        min-height: 19px;
        left: 21px;
        top: 22px;
    }

    #mobilemenu .menu.middle a:hover .svg-cabinet-login {
        background-color: #222;
    }

    #mobilemenu .menu.middle a .svg-basket,
    #mobilemenu .menu.middle a .svg-inline-basket {
        width: 18px;
        min-width: 18px;
        height: 17px;
        min-height: 17px;
        left: 20px;
        top: 23px;
    }

    #mobilemenu .menu.middle a .svg-wish,
    #mobilemenu .menu.middle a .svg-inline-wish {
        width: 18px;
        min-width: 18px;
        height: 16px;
        min-height: 16px;
        left: 20px;
        top: 23px;
    }

    #mobilemenu .menu.middle a .svg-compare,
    #mobilemenu .menu.middle a .svg-inline-compare {
        width: 17px;
        min-width: 17px;
        height: 17px;
        min-height: 17px;
        left: 20px;
        top: 23px;
    }

    #mobilemenu .menu.middle a .svg-phone,
    #mobilemenu .menu.middle a .svg-inline-phone {
        width: 9px;
        min-width: 9px;
        height: 12px;
        min-height: 12px;
        left: 25px;
        top: 20px;
    }

    #mobilemenu .menu.middle a:hover .svg-phone {
        background-color: transparent;
    }

    #mobilemenu .menu.middle a:hover .svg-cabinet {
        background-color: #222;
    }

    #mobilemenu .contacts .title {
        font-weight: bold;
        padding: 16px 20px 3px 19px;
        color: #000;
        font-size: 13px;
    }

    #mobilemenu .contacts a {
        color: #222;
    }

    #mobilemenu .contacts .email,
    #mobilemenu .contacts .address {
        padding: 12px 20px 0 50px;
        position: relative;
        line-height: 18px;
        font-size: 13px;
    }

    #mobilemenu .contacts .svg.svg-address,
    #mobilemenu .contacts .svg.svg-inline-address {
        position: absolute;
        left: 20px;
        top: 14px;
        width: 13px;
        min-width: initial;
        height: 16px;
        min-height: initial;
    }

    #mobilemenu .contacts .svg-email,
    #mobilemenu .contacts .svg-inline-email {
        min-width: initial;
        min-height: initial;
        height: 16px;
        width: 16px;
        position: absolute;
        left: 20px;
        top: 13px;
    }

    #mobilemenu .social-icons {
        border-bottom: 1px solid #f2f2f2;
    }

    #mobilemenu .social-icons ul {
        padding: 16px 0 30px 0;
        margin: 0;
    }

    #mobilemenu .social-icons li {
        list-style: none;
        display: block;
        padding: 0 0 6px
    }

    #mobilemenu .social-icons ul li:before {
        display: none;
    }

    #mobilemenu .social-icons li>a {
        font-size: 13px;
        line-height: 20px;
        background: none;
        padding: 5px 27px 5px 50px;
        width: 100%;
        opacity: 1;
        position: relative;
        margin: 0;
        height: auto;
        border-radius: 0px;
    }

    #mobilemenu .social-icons li>a .svg {
        position: absolute;
        width: 20px;
        min-width: 20px;
        height: 20px;
        min-height: 20px;
        left: 19px;
        top: 4px;
    }

    #mobilemenu .downdrop .menu ul>li .arrow .svg {
        transform: rotate(0.25turn);
    }

    #mobilemenu .downdrop .dropdown {
        position: relative;
        left: inherit;
        top: inherit;
        padding: 0 0 0 19px;
    }

    #mobilemenu .downdrop .expanded>.dropdown .menu_back,
    #mobilemenu .mobilemenu-v2 .expanded>.dropdown .menu_title {
        display: none;
    }

    #mobilemenu .downdrop .menu ul>li.expanded {
        border-bottom: none;
    }

    #mobilemenu .downdrop .menu ul>li.expanded>a {
        border-bottom: 1px solid #f2f2f2;
    }

    #mobilemenu .menu.middle a .svg-inline-phone,
    #mobilemenu .menu.middle a .svg-arrow-left {
        width: 18px;
        min-width: 9px;
        height: 12px;
        min-height: 12px;
        left: 19px;
        top: 23px;
    }

    .svg_triangle_right {
        background-image: url(../images/triangle_right.svg);
    }

    .svg-arrow-right {
        background-image: url(../images/arrow_right.svg);
    }

    .svg-arrow-left {
        background-image: url(../images/arrow_left.svg);
    }

    .svg-phone {
        margin: 0 9px 0 0;
        min-width: 9px;
        min-height: 12px;
        background-image: url(../images/phone_black.svg);
    }

    .m_logo {
        background: #dcdcdc;
        overflow: hidden;
    }

    .m_logo img {
        width: 160px;
        margin: 12px 20px;
        display: block;
    }

    /*header menu end*/
    .jlmf-checkbox+label {
        line-height: 24px;
        font-size: 13px;
        padding: 1px 15px 1px 15px
    }

    .jlmf-checkbox:checked+label {
        padding: 1px 25px 1px 15px;
    }

    .jlmf-checkbox+label::after {
        right: 8px;
        top: 14px;
    }

    .noUi-horizontal {
        height: 10px;
    }

    .noUi-horizontal .noUi-handle {
        width: 22px;
        height: 22px;
        top: -7px;
    }

    .noUi-handle {
        border: 4px solid #D80027;
    }
}

@media only screen and (max-width: 400px) {
    .b_gallery img {
        /*width: 220px;*/
        margin: 5px 0 10px;
    }

    .siner h2.car_title {
        margin: 6px 0 8px;
        font-size: 18px;
        line-height: 22px;
    }

    .b_car_desc_body {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.05em;
    }

    .b_car_desc_price .b_car_desc_body {
        display: flex;
        flex-wrap: wrap;
        line-height: 20px;
    }

    .b_car_desc_price .b_car_desc_body span.b_car_desc_value.red {
        color: #D80027;
        font-size: 16px;
    }

    .items-row {
        padding: 0;
    }

    .b_card_hover {
        padding: 10px 10px 20px;
        margin: 0px 1px 20px;
        min-height: auto;
    }

    .b_car_desc_price {
        padding: 7px 0 0;
        border-top: 1px solid #adadad;
        margin: 12px 0 0px;
    }
}

#yandex_map_info_new {
    display: none;
}

.calc_list {
    margin: 15px 0 0px;
    background: #e0e0e0;
}

.calc_list li {
    padding: 8px 7px;
    border-bottom: 2px solid #9a9a9e;
    line-height: 18px;
    font-size: 14px;
}

.calc_list li.calc_button {
    padding: 4px 7px;
    border-bottom: none;
}

.calc_list li.calc_button #event_zakaz_mobile {
    margin: 5px auto;
}

.calc_list li:hover {
    background: #ccc;
}

.calc_list li .tp {
    font-weight: bold;
}

.home_page_auto {
    padding: 50px 0;
}

.home_page_auto.meropriyatie {
    background: linear-gradient(0deg, rgba(73, 103, 182, 0.2), rgba(73, 103, 182, 0.2)), #243A55;
    overflow: hidden;
}


.home_page_auto_classmenu {
    background-image: url('../images/classmenu-image.webp');
    background-color: #F3F7FA;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding: 70px 0 80px;
}

.home_page_auto_classmenu .grid_w100 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0 53px;
    max-width: 100%;
}

.auto_classmenu__left {
    flex-basis: 245px;
}

.auto_classmenu-slider {
    flex: none;
}

.home_page_auto_classmenu .auto_classmenu-slider {
    max-width: calc(100% - 295px);
}

.auto_classmenu-slider .slick-slide>div {
    margin: 0 11px;
}

.home_page_auto_classmenu .auto_classmenu-item {
    width: 276px;
    padding: 20px 24px 24px;
    background: #FFFFFF;
    border: 1px solid #E3EBF0;
    box-sizing: border-box;
    box-shadow: 0px 20px 30px rgba(29, 74, 103, 0.06);
    position: relative;
    margin: 0 11px;
}

.home_page_auto_classmenu .auto_classmenu-item::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 5.5C5.5 8.53757 3.03757 11 0 11V0C3.03757 0 5.5 2.46243 5.5 5.5Z' fill='%233483D6'/%3E%3C/svg%3E%0A");
    width: 7px;
    height: 11px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    bottom: 90px;
    display: inline-block;
}

.auto_classmenu-item__image {
    padding-bottom: 20px;
    min-height: 109px;
    text-align: center;
    margin-bottom: 30px;
    display: block;
    border-bottom: 1px solid #D4D7DF;
}

.slick-slide .auto_classmenu-item__image img {
    display: inline-block;
}

.auto_classmenu-item__class {
    font-weight: normal;
    font-size: 18px;
    line-height: 18px;
    color: #00548D;
    text-decoration: none;
}

.auto_classmenu-item__name {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #9E9E9E;
    margin: 15px 0 20px;
    min-height: 44px;
}

.auto_classmenu-item__price {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.auto_classmenu-item__link {
    background: #0086DF;
    width: 100%;
    padding: 13px 0 12px;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    display: block;
    text-align: center;
}

.auto_classmenu-item__link:hover {
    text-decoration: none;
    color: #fff;
}

.auto_classmenu-slider .slick-arrow {
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #D4D7DF;
    display: flex;
    background-color: transparent;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 12L6.5 11L2.3 7H15V6H2.3L6.3 2L5.5 1L0 6.5L5.5 12Z' fill='%2300548D'/%3E%3C/svg%3E%0A");
    top: unset;
    transform: none;
}

.auto_classmenu-slider .slick-arrow:hover {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 12L6.5 11L2.3 7H15V6H2.3L6.3 2L5.5 1L0 6.5L5.5 12Z' fill='%2300548D'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
}

.auto_classmenu-slider .slick-arrow::before {
    display: none;
}

.auto_classmenu-slider .slick-prev {
    left: 20px;
}

.auto_classmenu-slider .slick-next {
    transform: scale(-1);
    right: 0;
}

.auto_classmenu__left p {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #9DA7BF;
    margin-bottom: 20px;
}

.auto_classmenu__left h2 {
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #333333;
    margin: 0;
}

.home_page_auto .b_card {
    width: 100%;
}

.home_page_auto .b_card .ybutt {
    font-size: 0.85em;
    width: 100%;
}

.home_page_auto .b_card .ybutt:hover {
    text-decoration: none;
    color: #fff;
    background-color: #00558A;
}


.home_page_auto .b_gallery {
    height: 200px;
    margin: 0 0 20px;
    overflow: hidden;
}

.home_page_auto .b_card_hover {
    padding: 20px 10px;
    margin: 10px;
    min-height: 420px;
}

.home_page_auto .b_car_desc {
    padding: 0 5px;
}

.home_page_auto .car_title {
    color: #111;
    font-size: 95%;
    margin: 0 0 6px;
    line-height: 140%;
    height: 41px;
    overflow: hidden;
}

.order_button {
    margin: 30px 0 0;
}

@media only screen and (max-width: 999px) {
    /*home_page_auto .b_card {
        width: 48.5%;
    }*/
}

@media only screen and (max-width: 768px) {
    .home_page_auto {
        padding: 10px 0;
    }

    .home_page_auto h2 {
        color: #111;
        text-align: center;
        margin: 0 0 20px;
        font-size: 25px;
        font-weight: 400;
    }

    .home_page_auto .b_card {
        width: 100%;
    }
}

.ul_arenda_auto {
    font-size: 0px;
    text-align: justify;
    margin-top: 27px;
}

.ul_arenda_auto li {
    font-size: 12px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    background: url(../images/lt_bg.png) no-repeat center right;
    padding: 0 12px
        /*padding-right: 25px*/
}

.ul_arenda_auto li:last-child {
    padding-right: 0px;
    background: none;
}

.ul_arenda_auto:after {
    display: inline-block;
    content: '';
    width: 100%;
}

.ul_arenda_auto li img {
    display: inline;
}

.ul_arenda_auto li span {
    display: block;
    text-transform: uppercase;
    color: #5585d2;
    font-weight: bold;
    font-size: 14px;
}

.ul_arenda_auto li p {
    color: #333;
}

.ul_arenda_auto li span .one-rub {
    font-size: 10px !important;
}

.ul_arenda_auto.m_tranz li {
    padding-right: 0px;
    vertical-align: top;
    text-align: left;
    font-size: 12px;
    line-height: 16px;
}

.ul_arenda_auto.m_tranz li img {
    margin: 20px 0;
}

.ul_arenda_auto.m_tranz li td {
    padding-bottom: 19px;
}

.ul_arenda_auto.m_tranz li td:first-child {
    font-weight: bold;
    width: 57px;
    font-size: 14px;
}

.ul_arenda_auto.m_tranz li td span {
    font-size: 16px;
    color: #333;
    text-transform: none;
    font-weight: normal;
}

@media only screen and (max-width: 999px) {
    .ul_arenda_auto {
        font-size: 0px;
        text-align: center;
        margin-top: 27px;
    }
}

.faq {
    max-width: 940px;
    margin: 0 auto;
}


.faq__item {
    border: 1px solid #ECECEC;
}

.faq-title {
    display: block;
    padding: 31px 30px;
    font-weight: normal;
    font-size: 18px;
    line-height: 18px;
    color: #333333;
    text-decoration: none;
    position: relative;
}

.faq-title:hover,
.faq-title:focus,
.faq-title:active {
    text-decoration: none;
    color: #333333;
}

.spoiler_link {
    float: right;
    margin-right: 22px;
    position: relative;
    top: -11px;
    display: block;
    height: 40px;
    width: 40px;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border: 1px solid #D4D7DF;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.spoiler_link:before {
    background: rgba(0, 84, 141, 0.8);
    content: '';
    height: 2px;
    position: absolute;
    right: -webkit-calc(50% - 7px);
    right: calc(50% - 7px);
    top: 50%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 14px;
}

.spoiler_link:after {
    background: rgba(0, 84, 141, 0.8);
    content: '';
    height: 2px;
    position: absolute;
    right: -webkit-calc(50% - 7px);
    right: calc(50% - 7px);
    top: 50%;
    width: 14px;
}

.spoiler_link.actives:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.spoiler_link.actives h2 {
    position: relative;
}

.spoiler_link:focus h2 {
    position: relative;
}

.faq-content {
    display: none;
    padding: 0 30px 30px;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #64696C;
}

.faq-content p {
    margin: 12px 0;
}

.faq__item {
    color: rgba(0, 0, 0, .75);
    line-height: 1.6;
    font-size: 15px;
}

.faq-content ul {
    margin: 12px 20px;
    list-style-type: disc;
}

.faq-content ul li {
    padding: 0 10px;
}

.faq-content ol {
    list-style: decimal;
    margin: 12px 20px;
}

.faq-content ol li {
    padding: 0 10px;
}

.home_page_faq {
    background: #FFFFFF;
    padding: 70px 0 80px;
}

.home_page_faq h2 {
    max-width: 940px;
    font-weight: normal;
    font-size: 32px;
    line-height: 32px;
    color: #333333;
    margin: 0 auto 40px;
}


.breadcrumbs__body {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
}

.breadcrumbs__body a {
    color: #0662A9;
}

.breadcrumbs__body a:hover {
    text-decoration: none;
    color: #D80027;
}

.breadcrumbs__body .sep {
    display: inline-block;
    padding: 0 5px;
    color: #ccc;
}

.breadcrumbs__body .current {
    color: #777;
}


@media (max-width: 768px) {

    .breadcrumbs__body {

        margin-bottom: 5px;
        padding: 5px 0;
    }
}

.transfer-slider__item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.transfer-slider__item {
    height: 250px;
}

.transfer-slider {
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    .transfer-slider .slick-arrow {
        display: none !important;
    }
}

.error-page__wrapper {
    position: relative;
    min-height: calc(100vh - 120px);
}

.error-page__wrapper-image {
    position: absolute;
    top: 0;
    left: 55px;
}


.error-page__image {
    position: absolute;
    bottom: 5px;
    right: 20px;
    max-width: 55%;
}

.error-box {
    max-width: 470px;
    margin: 85px 0 0 75px;
}

.error-box__title {
    font-size: 285px;
    font-weight: 700;
    line-height: 205px;
    margin-bottom: 55px;
    color: #262626;
}

.error-box__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #212121;
    text-align: center;
    margin-bottom: 35px;
}

.error-box__link {
    display: flex;
    width: 285px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #1585db;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 auto;
}

.error-box__link:hover {
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1199px) {
    .error-page__image {
        max-width: 45%;
    }
}

@media screen and (max-width: 991px) {
    .error-box {
        margin: 35px auto 0;
    }

    .error-page__image {
        right: 50%;
        max-width: unset;
        transform: translate(50%, 0);
        -moz-transform: translate(50%, 0);
        -o-transform: translate(50%, 0);
        -webkit-transform: translate(50%, 0);
        width: 400px;
    }
}

@media screen and (max-width: 650px) {
    .error-page__wrapper-image {
        display: none;
    }

    .error-box__title {
        font-size: 150px;
        line-height: normal;
        margin-bottom: 10px;
        text-align: center;
    }

    .error-page__image {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .error-page__image {
        display: none;
    }
}

.autopark-shortcode__filter {
    display: flex;
    flex-wrap: wrap;
}

.autopark-shortcode__filter li {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(139, 139, 139, .3);
    color: #616161;
    border-radius: 25px;
    margin-right: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.autopark-shortcode__filter li.active {
    background-color: #c5dbe6;
}

.check-other-cars {
    width: fit-content;
    width: -moz-fit-content;
    padding: 0 15px;
    height: 40px;
    margin: 22px 0 0;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.03em;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    background-color: #1585DB;
    display: block;
    transition: all 0.3s ease;
}

.check-other-cars:hover {
    text-decoration: none;
    color: #fff;
    background-color: #00558A;
}

.meropriyatie .check-other-cars {
    background-color: var(--secondary);
}

.meropriyatie .check-other-cars:hover {
    background-color: #00558A;
}


.modal-cur-auto {
    display: none;
}

.modal-cur-auto.active {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    color: #fbca00;
    font-weight: 700;
}



.jlmf-section.jlmf_22 {
    width: 32%;
    float: left;
    clear: none;
}

.jlmf-section.jlmf_23 {
    float: left;
    clear: both;
    width: 55%;
    margin-top: 18px;
}


/*Reviews start*/

.reviews__item {
    background: #F5F5F5;
    padding: 30px;
    margin-bottom: 15px;
    position: relative;
}

.reviews__item-rating {
    display: flex;
    margin-bottom: 20px;
}

.reviews__item-rating img {
    margin-right: 2px;
}

.reviews__item-name {
    font-size: 18px;
    line-height: 18px;
    color: #000000;
    margin-bottom: 15px;
}

.reviews__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.reviews__item:after {
    content: "";
    width: 65px;
    height: 65px;
    background: url('../images/review-quotes.png') no-repeat center;
    position: absolute;
    display: block;
    top: 10px;
    right: 20px;
}

.review__form-stars {
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
}

.review__form-input {
    display: none;
}

.review__form-star:hover,
.review__form-star:hover~.review__form-star {
    background: url('../images/star-full.png') center;
}

.review__form-stars:hover .review__form-star:hover,
.review__form-stars:hover .review__form-star:hover~.review__form-star,
.review__form-input:checked~.review__form-star {
    background: url('../images/star-full.png') center;
}

.review__form-star,
.review__form-stars:hover .review__form-star {
    float: right;
    display: block;
    width: 17px;
    height: 16px;
    background: url('../images/star-empty.png') center;
    cursor: pointer;
    margin-right: 2px;
}

.review__form {
    margin-bottom: 20px;
}

.review__form form {
    padding: 35px 30px 30px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review__form-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.review__form form input[type='text'],
.review__form form input[type='text']:focus,
.review__form form textarea,
.review__form form textarea:focus,
.reviews-callback-form form input[type='text'],
.reviews-callback-form form input[type='text']:focus,
.reviews-callback-form form textarea,
.reviews-callback-form form textarea:focus {
    width: 100%;
    padding: 13px 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    border: none;
    background: #FFFFFF;
    margin-bottom: 15px;
    outline: none;
}

.review__form form textarea {
    height: 150px;
    resize: none;
}

.review__form form input[type='submit'],
.review__form form input[type='submit']:focus,
.reviews-callback-form form input[type='submit'],
.reviews-callback-form form input[type='submit']:focus {
    width: 100%;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    background: #D80027;
    border-radius: 0;
    border: none;
}

.reviews-callback-form form {
    padding: 35px 30px 130px;
    background: linear-gradient(42.06deg, #0097D4 0%, #00ADF3 100%);
    position: relative;
    margin-bottom: 30px;
}

.reviews-callback-form-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.reviews-callback-form-image {
    position: absolute;
    left: 0;
    bottom: -15px;
}


/*Reviews end*/

.privacy-wrapper {
    margin: 15px 0;
    font-size: 14px;
    line-height: 18px;
}

.privacy-wrapper a {
    /*color: #1585db;*/
    color: inherit;
    border-bottom: 1px solid;
}

.privacy-wrapper a:hover {
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .footer-bottomline {
        padding-bottom: 45px;
    }
}

.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    margin-right: 15px;
}

.footer-dev {
    font-size: 14px;
    line-height: 130%;
    text-align: right;
    color: #FFFFFF;
}

.footer-dev a {
    color: inherit;
}

.footer-dev a:hover {
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .footer-dev {
        margin-top: 10px;
        float: left;
    }
}

.order_button a.order_form {
    width: 100%;
}

#content-block {
    clear: both;
}

@media screen and (max-width: 768px) {
    .checkbox-list {
        margin-left: 0;
    }

    .jlmf-section.jlmf_23 {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .checkbox-list-label {
        width: 100%;
    }

    .transfer-slider .slick-dots {
        position: static;
    }

    .transfer-slider .slick-dots li {
        width: 10px;
        height: 10px;
    }

    .transfer-slider .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .transfer-slider .slick-dots li button:before {
        width: 10px;
        height: 10px;
        line-height: 10px;
    }
}

.clearForm .jlmf-link {
    margin-top: 0 !important;
}

.auto-park__notice {
    font-size: 25px;
    padding: 25px 0 25px 20px;
    background-color: #c3d9f5;
}

.mobile-phone {
    height: 100%;
    margin-left: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.mobile-phone a {
    color: #FFFFFF;
}

@media screen and (max-width: 767px) {
    .auto-park__notice {
        font-size: 18px;
        padding: 15px 0 15px 20px;
    }
}

#writetous {
    opacity: 0;
    color: #000;
}

.writetous {
    position: relative;
    z-index: 1000;
}

.writetous_mobile-icon-close {
    vertical-align: middle;
    cursor: pointer;
    padding: 15px;
}

.gallery-top .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-top .swiper-slide.swiper-slide-active {
    overflow: hidden;
}

/*delovoy turizm*/

.head_unit_h {
    font-weight: bold !important;
    font-size: 40px !important;
    line-height: 40px !important;
    color: #333333 !important;
    ;
    padding: 0 !important;
}

.title_unit {
    font-weight: bold;
    font-size: 30px !important;
    line-height: 30px !important;
    color: #333333 !important;
    text-align: center;
}

.navy_line {
    width: 150px;
    height: 3px;
    margin: 0;
    background-color: #00558A;
}

.margin_center {
    margin-left: auto !important;
    ;
    margin-right: auto !important;
    ;
}

.heading_box {
    height: 500px;
    margin-top: 25px;
}

article {
    color: #05131e;
}

.article_box {
    margin-top: 75px;
}

.heading_box_left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.bg__right {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 50%;
    background-image: url(../images/content/delovoy_turizm/smile_man.jpg);
    background-size: cover;
    z-index: -1;
    margin-top: 25px;
}

.article_box_sub {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.article_box_sub_content {
    flex: 350px;
}

.article_box_sub_content>p:first-child {
    font-weight: bold;
    font-size: 22px;
    line-height: 140%;
    color: #343C43;
}

.article_box_sub_content ul {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
}

.article_box_sub_content ul li {
    list-style-type: disc;
}

.article_box_sub_content ul li::marker {
    color: #00558A;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 15px;
}

.benefits_box {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #DEF1FF;
    ;
    border-radius: 10px;
    padding: 15px;
}

.benefits_box:last-child {
    gap: 15px;
    background: linear-gradient(92.13deg, #1585DB 0%, #00558A 100%);
    border-radius: 10px;
    border: none;
}

.benefits_box:last-child>div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits_box:last-child>div:nth-child(1)>p {
    line-height: 140%;
    color: #FFFFFF;
    margin: 0;
    margin-right: auto;
}

.benefits_box:last-child>div:nth-child(1)>p:nth-child(1) {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.benefits_box:last-child>div:nth-child(1)>p:nth-child(2) {
    font-weight: normal;
    font-size: 14px;
}

.benefits_box:last-child>div:nth-child(1)>p a {
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    color: inherit;
}

.benefits_box:last-child>div:nth-child(2) {
    position: relative;
    width: 300px;
    height: 100%;
}

.benefits_box:last-child>div:nth-child(2) img {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
}

.article_box_autopark {
    margin-top: 15px;
}

.article_box_autopark .b_card_hover {
    padding: 0;
    margin: 0;
    box-shadow: none;
    min-height: 490px;
    display: flex;
    flex-direction: column;
}

.article_box_autopark .b_car_desc {
    padding: 0;
    margin: auto 0 0 0;
    max-width: 100%;
    background-color: #DEF1FF;
}

.article_box_autopark .b_car_desc .car_title {
    background-color: #FFFFFF;
    margin: 0;
    padding: 15px;
    height: 90px;
}

.article_box_autopark .b_car_desc>.row {
    display: none;
}

.article_box_autopark .b_card {
    box-shadow: none;
    border: 1px solid #DEF1FF;
}

.article_box_autopark .b_car_desc_price {
    border-top: none;
    padding: 15px;
    margin: 0;
}

.article_box_autopark .b_gallery {
    padding: 15px 15px 0 15px;
}

.article_box_autopark .order_button {
    padding: 15px;
    margin: 0;
}

.article_box_autopark .check-other-cars {
    margin: 15px auto;
    background-color: #FFFFFF;
    border: 1px solid #00558A;
    color: #00558A;
    transition: .3s;
}

.article_box_autopark .check-other-cars:hover {
    background-color: #00558A;
    color: #FFFFFF;
}

.article_box_autopark .b_car_desc_name {
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: #343C43;
}

.two_sections_flex {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 350px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.bg__left_two {
    flex: 1;
    position: relative;
    height: 100%;
}

.bg__left_two_img {
    position: absolute;
    left: -100%;
    background-image: url(../images/content/delovoy_turizm/phone_man.jpg);
    background-repeat: round;
    height: 350px;
    right: 0;
    top: 0;
    bottom: 0;
}

.box_right {
    flex: 1;
}

.service-section {
    background: linear-gradient(0deg, rgba(73, 103, 182, 0.2), rgba(73, 103, 182, 0.2)), #243A55;
    padding: 40px 0;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 12px;
    height: 108px;
    overflow: hidden;
    transition: height 2s;
}

.service-list.all {
    height: auto;
}

.service-all {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    margin: 25px auto 0;
    max-width: fit-content;
    cursor: pointer;
}

.service-list li {
    padding: 8px 13px;
    border: 2px solid rgba(255, 255, 255, 0.26);
}

.service-list li a {
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
}

.service-title {
    font-weight: normal;
    font-size: 32px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.service-info {
    background-repeat: no-repeat;
    background-position: right top;
    padding: 40px 0 26px;
    margin-top: 40px;
}

.service-info__name {
    font-weight: normal;
    font-size: 32px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.service-info__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 690px;
}

.service-info__price {
    padding-left: 38px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8218 21.9878H2.65298C1.18774 21.9878 0 20.8 0 19.3348V8.7233C0 7.25806 1.18774 6.07031 2.65298 6.07031H20.8218C21.33 6.07138 21.8135 6.2912 22.1484 6.67337L27.5646 12.8635C28.1451 13.5315 28.1451 14.5249 27.5646 15.1929L22.1474 21.383C21.813 21.7656 21.33 21.9861 20.8218 21.9878ZM20.8218 7.8389H2.65298C2.16443 7.8389 1.76859 8.23474 1.76859 8.7233V19.3348C1.76859 19.8234 2.16443 20.2192 2.65298 20.2192H20.8218L26.2383 14.0291L20.8218 7.8389Z' fill='%230086DF'/%3E%3C/svg%3E%0A");
    background-position: left center;
    background-repeat: no-repeat;
    font-weight: 550;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 40px;

}

.service-info__link {
    padding: 13px 38px 12px 37px;
    background: #0086DF;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-info__link:hover {
    background: #e4c235;
    text-decoration: none;
    color: #FFFFFF;
}


.advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-list .icon-blok-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 15px;
    flex-basis: 270px;
}

.advantage-list .icon-blok-inner i {
    background: #FFFFFF;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.advantage-mobile {
    display: none !important;
}

.advantage-block {
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px 10px;
}

.advantage-block .advantage-item {
    flex-basis: calc(50% - 10px);
}

@media (max-width: 1199px) {
    .home_page_auto_classmenu {
        background-position: left -170px bottom;
    }

    .home_page_auto_classmenu .grid_w100 {
        gap: 0;
    }

    .section-ordering {
        padding-bottom: 350px;
    }
}

@media (min-width: 968px) {
    .bg__left {
        position: absolute;
        display: block;
        left: 0;
        bottom: 0;
        top: 0;
        width: 50%;
        z-index: -1;
    }
}

@media (min-width: 968px) {
    .bg__right {
        top: 0;
        left: auto;
        width: 50%;
        height: 500px;
        /*height: auto;*/
    }
}

@media (min-width: 968px) {
    .heading_box_left {
        width: 50%;
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .heading_box_left {
        width: auto;
        padding-right: 0;
    }

    .heading_box {
        height: auto;
    }

    .hidden_in_modile {
        display: none;
    }

    .advantage-list {
        gap: 30px 0;
        justify-content: space-between;
    }

    .advantage-item {
        flex-basis: 45%;
    }

    .home_page_auto_classmenu .grid_w100 {
        flex-direction: column;
    }

    .home_page_auto_classmenu {
        background-image: unset;
    }

    .home_page_auto_classmenu .auto_classmenu-slider {
        max-width: 100%;
    }

    .auto_classmenu__left {
        flex-basis: unset;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .siner {
        padding: 10px;
    }

    .benefits_box:last-child>div:nth-child(2) img {
        top: 0;
        height: 100%;
        width: 100%;
    }

    .benefits {
        gap: 15px;
    }

    .head_unit_h {
        font-size: 28px !important;
    }

    .title_unit {
        font-size: 22px !important;
    }

    .advantage {
        padding: 40px 0;
    }

    .advantage-title {
        font-weight: normal;
        font-size: 25px;
        line-height: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .advantage .advantage-list {
        display: none;
    }

    .advantage-mobile {
        display: block !important;
    }

    .advantage-block {
        display: flex;
    }

    .advantage-item {
        flex-direction: column;
        align-items: center;
        gap: 16px 0;
    }

    .advantage-item__text {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .auto_classmenu__left {
        text-align: center;
        margin-bottom: 30px;
    }

    .auto_classmenu__left p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .auto_classmenu__left h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .home_page_auto_classmenu .grid_w100 {
        display: block;
    }

    .home_page_auto_classmenu .auto_classmenu-item {
        margin: 0;
    }

    .home_page_auto_classmenu {
        padding: 40px 0;
    }

    .mobile-hide {
        display: none;
    }

    .service-section {
        padding: 20px 0;
    }

    .service-title {
        font-size: 25px;
        line-height: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .service-list {
        height: 556px;
    }

    .service-list li {
        text-align: center;
        padding: 4px 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-list li a {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .section-ordering .icon-blok-inner {
        flex-basis: calc(50% - 10px);
        flex-direction: column;
        gap: 15px 0;
        align-items: center;
    }

    .icon-blok-inner .desc-icon {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .section-ordering {
        background: linear-gradient(90.16deg, #F3F7FA 0.13%, #F3F7FA 99.86%);
        padding: 40px 0 270px;
        position: relative;
    }

    .section-ordering::after {
        content: '';
        background-image: url(../images/car.webp);
        width: 419px;
        height: 207px;
        display: block;
        position: absolute;
        bottom: 40px;
        left: 0;
        background-size: contain;
    }

    .home_page_faq {
        padding: 40px 0;
    }

    .home_page_faq h2 {
        font-size: 25px;
        line-height: 30px;
        text-align: center;
        margin: 0 auto 30px;
    }

    .faq-title {
        padding: 20px;
        font-size: 16px;
        line-height: 20px;
    }

    .spoiler_link {
        margin-right: 0;
        margin-left: 20px;
        top: 0;
    }

    .faq-content {
        padding: 0 20px 20px;
        font-size: 14px;
        line-height: 20px;
    }
}


/* Оптимизированные стили для блока writetous */

.writetous_popup {
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.writetous_popup:not(.writetous_popup_show) {
    display: none;
    opacity: 0;
}

.writetous_popup_show {
    opacity: 1;
}

.writetous_popup-container {
    margin: 0;
    top: initial;
    left: initial;
    bottom: 140px;
    right: 0;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    z-index: 1;
    cursor: default;
    max-width: 300px;
}

.writetous_wrapper {
    padding: 0;
    border-radius: 0;
    max-height: 67vh;
    text-align: center;
}

.writetous_text-wrapper {
    padding-bottom: 0;
    display: none;
}

.writetous_messenger-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px;
    flex-direction: column;
}

.writetous_messenger-block {
    margin: 8px 5px;
    display: block;
}

.writetous_messenger {
    display: block;
    height: 35px;
    width: 35px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.writetous_messenger:hover {
    transform: scale(1.1);
}

.writetous_messenger img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writetous_messenger-descr {
    display: none;
}

.writetous_btn {
    cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: 5px;
    left: initial;
    border: none;
    background: none;
    padding: 0;
    outline: 0;
}

.writetous_btn_wrapper {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ff8c01;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.2s linear;
}

.writetous_btn_active .writetous_btn_wrapper {
    background: #fff;
}

.writetous_icon,
.writetous_icon_close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s linear;
}

.writetous_icon img,
.writetous_icon_close img {
    max-width: 100%;
    height: auto;
    display: block;
}

.writetous_btn_active .writetous_icon {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.1);
}

.writetous_icon_close {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.1);
}

.writetous_btn_active .writetous_icon_close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 767px) {
    .writetous_popup-container {
        bottom: 66px;
    }

    .writetous_btn {
        bottom: 15px;
    }
}

.siner .price .table-price {
    color: #396994;
    font-weight: bold;
    padding: 15px 0 1px;
    text-align: center;
    font-size: 16px;
}

.img-about {
    padding-bottom: 20px;
    text-align: center;
}

.img-about .slick-prev:before,
.slick-next:before {
    color: #000 !important;
}

.imagesi {
    display: flex !important;
    justify-content: center;
}




/**/



.section-top_image_block {
    padding: 0;
    overflow: hidden;
}

.section-top_image_block>.container {
    width: 100%;
}

#top_image_block {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin: 0;
}

.slide-viewport {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.slide-viewport.p_relative {
    position: relative;
}

.slide-viewport .slide {
    position: relative;
    width: 100%;
    height: 480px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
}

#top_image_block .slide-viewport .slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.92;
    background: rgb(36, 58, 85);
    background: radial-gradient(circle, rgba(36, 58, 85, 1) 0%, rgba(48, 88, 138, 1) 72%, rgba(58, 114, 184, 1) 91%);
}

#top_image_block .slide .body {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}

#top_image_block .slide .top-info {
    background-repeat: no-repeat;
    background-position: right 10px;
    padding: 0 385px 26px 0;
    margin-top: 10px;
    background-size: 375px;
}

#top_image_block .slide h1 {
    position: relative;
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.desktop #top_image_block .slide h1 {
    -webkit-transition: all 0.3s ease-in-out 0.4s;
    -moz-transition: all 0.3s ease-in-out 0.4s;
    -o-transition: all 0.3s ease-in-out 0.4s;
    transition: all 0.3s ease-in-out 0.4s;
}

#top_image_block .slide h1 I {
    position: absolute;
    width: 93px;
    height: 81px;
    left: -3em;
    top: 0.3ex;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

#top_image_block .slide ul {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
}


#top_image_block .slide li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 20px;
}

#top_image_block .slide li:last-child {
    margin-bottom: 0;
}

#top_image_block .slide li span.orange {
    color: #D80027;
}

#top_image_block .slide li:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='white' fill-opacity='0.2'/%3E%3Ccircle cx='7' cy='7' r='3' fill='white'/%3E%3C/svg%3E%0A");
}

#top_image_block .slide p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 690px;
}



#top_image_block .body {
    position: relative;
    width: 95%;
    margin: 0 auto;
    max-width: 1140px;
}

#top_image_block .slide-click a {
    float: left;
    text-decoration: none;
    color: #fff;
    width: 250px;
    height: 50px;
    overflow: hidden;
    text-indent: -9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.5 12L6.5 11L2.3 7H15V6H2.3L6.3 2L5.5 1L0 6.5L5.5 12Z' fill='white'/%3E%3C/svg%3E%0A");
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    font-size: 0;

}

.meropriyatie .breadcrumbs__body {
    padding: 5px 15px;
    margin: 3px 0px;
    list-style: none;
}


.section-block {
    padding: 30px 0 50px;
    color: #000;
}


.section-block.bg {
    background: #F3F7FA;
}


.section-block h2,
.home_page_auto h2 {
    color: #000;
    text-align: center;
    font-size: 35px;
    line-height: 41px;
    font-weight: 400;
    padding: 0 0 20px;
}


.home_page_auto.meropriyatie h2 {
    color: #fff;
    margin: 0;
}

.home_page_auto h2 {
    padding: 0;
    font-size: 28px;
}


.section-block p {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    text-indent: 0;
}


.section-block ul {
    list-style: disc;
    margin: 20px 0 0 35px;
}

.section-block ul li {
    padding: 0 0 10px;
    line-height: 18px;
}

.meropriyatie .autopark-shortcode__wrapper {
    margin: 30px 0 0;
    text-align: center;
}

.meropriyatie .check-other-cars {
    margin: 30px auto 0;
}



.section-ordering.meropriyatie h3 {
    color: #000;
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    padding: 0 0 40px;
}


.meropriyatie .advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
}


.meropriyatie .advantage-list .icon-blok-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 20px;
    flex-basis: 550px;
}

.section-ordering.meropriyatie {
    background-position: 113% 115%;
}

.meropriyatie .icon-blok-inner .desc-icon {
    font-size: 16px;

}

.meropriyatie .icon-blok-inner .desc-icon .blue-text {
    font-weight: 500;
    font-size: 18px;
}


.category-meropriyatiya .category-events-intro {
    font-size: 16px;
    line-height: 1.55;
    color: #e8eef5;
    max-width: 1050px;
    margin: 0 auto;
    padding: 30px 0;
}

.category-meropriyatiya__title {
    text-align: center;
    margin: 0 0 18px;
}

.category-meropriyatiya__short-text {
    max-width: 900px;
    margin: 0 auto 26px;
    text-align: center;
    color: #dce7f2;
    font-size: 18px;
    line-height: 1.5;
}

.category-meropriyatiya__short-text p:last-child {
    margin-bottom: 0;
}

.category-meropriyatiya .category-events-intro p {
    margin: 0 0 12px;
}

.category-meropriyatiya .category-events-intro p:last-child {
    margin-bottom: 0;
}

.event-section-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 36px 0 18px;
    width: 100%;
    background: transparent;
}

.category-meropriyatiya__section-title {
    text-align: center;
    position: relative;
    margin: 34px 0 26px;
    font-size: 28px;
    line-height: 1.25;
    background: transparent;
}

.category-meropriyatiya__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin: 12px auto 0;
}

.category-meropriyatiya__description {
    margin: 22px auto 34px;
    max-width: 980px;
}

@media (max-width: 991px) {
    .category-meropriyatiya .category-events-intro {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.5;
        padding: 24px 0;
    }

    .category-meropriyatiya__short-text {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .category-meropriyatiya__section-title {
        font-size: 24px;
        margin: 30px 0 22px;
    }
}

@media (max-width: 767px) {
    .category-meropriyatiya .category-events-intro {
        font-size: 14px;
        line-height: 1.45;
        padding: 18px 0;
    }

    .category-meropriyatiya__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .category-meropriyatiya__short-text {
        font-size: 15px;
        line-height: 1.45;
    }

    .category-meropriyatiya__section-title {
        font-size: 21px;
        margin: 24px 0 18px;
    }

    .category-meropriyatiya__section-title::after {
        margin-top: 10px;
    }
}

.event-section-title:first-of-type {
    margin-top: 0;
}

.event-section-title--past {
    margin-top: 44px;
}

.event_list--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 8px;
}

.event_list--featured .service-info {
    max-width: none;
    width: 100%;
}

.category-meropriyatiya .event_list .service-info {
    width: 100%;
    max-width: none;
}

.category-meropriyatiya__past-section {
    background: #dce0e6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 14px;
}

.category-meropriyatiya__upcoming-section {
    background: #dce0e6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 14px;
}

.category-meropriyatiya__upcoming-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 18px 10px;
}

.category-meropriyatiya__past-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 18px 10px;
}

.category-meropriyatiya__past-inner .event-section-title,
.category-meropriyatiya__past-inner .category-meropriyatiya__section-title,
.category-meropriyatiya__upcoming-inner .event-section-title,
.category-meropriyatiya__upcoming-inner .category-meropriyatiya__section-title {
    background: transparent !important;
}

.event-empty-notice {
    color: #e8eef5;
    font-size: 16px;
    margin: 0;
    padding: 12px 0;
}

.event_list {
    align-items: stretch;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
}

.event_list .service-info {
    background: linear-gradient(0deg, rgba(73, 103, 182, 0.2), rgba(73, 103, 182, 0.2)), #243a55db;
    width: 100%;
    margin: 0 0 20px;
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event_list .service-info .service-img__link {
    display: flex;
    margin: 0 0 10px;
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.event_list .service-info img {
    width: 100%;
}

.event_list .service-info .service-info__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
    max-width: 690px;
}

.event_list .service-info .service-info__date {
    padding-left: 38px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8218 21.9878H2.65298C1.18774 21.9878 0 20.8 0 19.3348V8.7233C0 7.25806 1.18774 6.07031 2.65298 6.07031H20.8218C21.33 6.07138 21.8135 6.2912 22.1484 6.67337L27.5646 12.8635C28.1451 13.5315 28.1451 14.5249 27.5646 15.1929L22.1474 21.383C21.813 21.7656 21.33 21.9861 20.8218 21.9878ZM20.8218 7.8389H2.65298C2.16443 7.8389 1.76859 8.23474 1.76859 8.7233V19.3348C1.76859 19.8234 2.16443 20.2192 2.65298 20.2192H20.8218L26.2383 14.0291L20.8218 7.8389Z' fill='%230086DF'/%3E%3C/svg%3E%0A");
    background-position: left center;
    background-repeat: no-repeat;
    font-weight: 550;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.event_list .service-info .service-info__link {
    padding: 13px 38px 12px 37px;
    background: #0086DF;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    display: block;
    transition: all 0.3s ease;
}

.event_list .service-info .service-info__link:hover {
    background: #e4c235;
    text-decoration: none;
}

.event_list .service-info .service-info__name {
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.slide-viewport2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

    overflow: hidden;
}

@media (max-width: 1024px) {

    #top_image_block {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        margin: 0;
    }


    #top_image_block .slide h1 {
        position: relative;
        font-weight: 400;
        font-size: 28px;
        line-height: 35px;
        color: #FFFFFF;
        margin-bottom: 30px;
    }


    #top_image_block .slide-viewport .slide {
        position: relative;
        width: 100%;
        height: auto;
        background-position: 50% 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #000;
        padding: 25px 0 55px;
    }



    .event_list .service-info {
        width: 50%;
        max-width: 400px;
    }

    .event_list .service-info .service-img__link {
        max-height: 160px;
    }


    .section-top_image_block .slider-desc-inner {
        padding: 0;

    }

    #top_image_block .slide .top-info {
        background: none !important;
        padding: 0 25px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .event_list--featured {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .event_list {
        display: flex;
        gap: 25px;
        align-items: center;
        flex-direction: column;

    }

    .event_list .service-info {
        width: 100%;
        max-width: 400px;
    }

    .category-meropriyatiya .event_list .service-info {
        max-width: 400px;
    }

    #top_image_block .slide .top-info {
        background: none !important;
        padding: 0 3px;
        margin: 0;
    }

    #top_image_block .slide-viewport .slide {
        position: relative;
        width: 100%;
        height: auto;
        background-position: 50% 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #000;
        padding: 35px 0 30px;
    }

    #top_image_block .slide h1 {
        position: relative;
        font-weight: 400;
        font-size: 26px;
        line-height: 31px;
        color: #FFFFFF;
        margin-bottom: 22px;
    }

    #top_image_block .service-info__text {
        font-weight: 400;
        font-size: 15px;
        line-height: 23px;
        color: #FFFFFF;
        margin-bottom: 30px;
        max-width: 690px;
    }
}


.rating-badge {
    padding: 30px 0 0;
}


/* Блок 1: Герой-заголовок */
.hero {
    background: linear-gradient(rgb(43 66 104 / 85%), rgb(44 67 104 / 85%)), url(/wp-content/uploads/2024/04/about3.png) center / cover;
    color: white;
    padding: 75px 0;
    text-align: center;
    position: relative;
}




.hero .breadcrums,
.slide .breadcrums {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255 255 255 / 40%);
    z-index: 2;
}


.hero .breadcrums .breadcrumbs__body,
.slide .breadcrums .breadcrumbs__body {
    padding: 5px 8px;
    margin: 0;
    list-style: none;
    text-align: left;
    font-size: 15px;
}

.hero .breadcrums .breadcrumbs__body a,
.slide .breadcrums .breadcrumbs__body a {
    color: #00558a;
}

.hero .breadcrums .breadcrumbs__body a:hover,
.hero .slide .breadcrumbs__body a:hover {
    color: #ffe100;
}

.hero .breadcrums .breadcrumbs__body .current,
.slide .breadcrums .breadcrumbs__body .current {
    color: #ffffff;
}

@media (max-width: 992px) {

    .hero .breadcrums,
    .slide .breadcrums {
        display: none;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 8px;
    text-align: left;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    line-height: 1.2;
}

.hero h1 span {
    font-size: 27px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Блок 2: Преимущества */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 15px;
}

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 32px;
}

.benefit-card h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Блок 3: Процесс работы */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 23%;
    min-width: 200px;
    margin: 0 auto;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.step h3 {
    font-size: 1.0em;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: bold;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Блок 4: Отзывы */
.testimonials {
    background-color: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(245, 158, 11, 0.1);
    line-height: 1;
}

.testimonial-content {
    margin-top: 0;
    line-height: 1.4;
    color: var(--gray);
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: var(--gray);
    font-size: 0.9em;
}

/* Блок 5: Призыв к действию */
.cta-section {
    background-color: #f1f5f9;
}

.cta-block {
    background: linear-gradient(313deg, var(--primary), #2b4268);
    color: white;
    border-radius: 2px;
    padding: 70px 50px;
    text-align: center;
    margin: 29px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.cta-block:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: 1px;
}

.cta-block p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 28px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 992px) {
    .process-steps:before {
        display: none;
    }

    .step {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 27px;
        line-height: 31px;
    }

    .hero p {
        font-size: 17px;
        margin-bottom: 38px;
    }
}




.section {
    padding: 50px 0;
}

.section .section-title {
    text-align: center;
    margin-bottom: 45px;
    padding: 0px;
    overflow: hidden;
}

.section-title h1,
.section-title h2 {
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    display: block;
    color: var(--primary);
    font-weight: 700;
}

.section-title h1:after,
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    margin: 35px auto 0;
    color: var(--dark);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--secondary);
    color: white;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    /*background: #e69008;*/
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.btn2,
.btn2:visited,
.btn2:focus,
.btn2:active {
    color: #fff;
    padding: 0.8em 2em 1em;
    border-radius: 50px;
    box-shadow: 0px 10px 30px rgba(29, 140, 255, 0.5);
    background: linear-gradient(20deg, #338dfd, #03c4de);
    border: 0;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    transition: all 0.3s ease;
}

.btn2:hover,
.btn2:active {
    color: #fff;
    background: linear-gradient(15deg, #338dfd, #03c4de);
    border: 0;
    transform: translateY(-3px);
    box-shadow: 0px 10px 40px rgba(29, 140, 255, 0.8);
    transition: all .3s ease;
}

svg:not(:root) {
    overflow: hidden;
}

.arr-next {
    width: 24px;
    height: 24px;
    margin-left: 0.5em;
    margin-bottom: -7px;
    fill: #fff;
}


.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Текстовый блок 1 */
.section.text-section {
    background: var(--light);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.tax-destination_category .section.text-section {
    padding-top: 0;
}


.text-block {
    padding: 15px 0;
}

.text-block h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}


.text-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}


.autopark-shortcode__box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    position: relative;
}

.meropriyatie .autopark-shortcode__box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 15px;
    position: relative;
}

.home_page_auto.meropriyatie .car_title {
    height: auto;
    color: #111;
    margin: 0;
    font-size: 21px;
    text-align: left;
    line-height: 23px;
}

@media (max-width: 991px) {
    .home_page_auto.meropriyatie .car_title {
        font-size: 19px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .home_page_auto.meropriyatie .car_title {
        font-size: 17px;
        line-height: 20px;
    }
}

.home_page_auto.meropriyatie .b_card_hover {
    padding: 10px 10px;
    margin: 0;
    min-height: 469px;
}

.b_card {
    display: block;
    width: 100%;
}

.b_gallery {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.b_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.text-block .b_card_hover {
    padding: 10px;
    margin: 0;
    min-height: 200px;
    height: 100%;
}



.text-block h2.car_title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 22px;

}

.text-block .check-other-cars {
    margin: 45px auto 0;
}

.text-block h3 {
    font-size: 21px;
    margin: 25px 0 20px;
    line-height: 28px;
    color: var(--primary);
}


.text-block p {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.text-block ul:not(.autopark-shortcode__filter) {
    color: var(--dark);
    margin-left: 0px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
    background: white;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
    font-weight: 400;
}


.text-block ol {
    color: var(--dark);
    margin-left: 0px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
    background: white;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
    font-weight: 400;
}




.text-block ul:not(.autopark-shortcode__filter) li,
.text-block ol li {
    padding: 4px 0;
}

.text-block li strong {
    font-weight: 700;
}


.text-block .moduletable h3 {
    margin: 10px 0;
}

.moduletable {
    background: #fff;
    padding: 10px 20px;
    color: var(--gray);
    margin: 0 0 25px;
}


/* Таблица тарифов */
.price-table-section {
    margin: 40px 0;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
    table-layout: fixed;
}

.price-table th:first-child,
.price-table td:first-child {
    width: 200px;
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) {
    width: calc((100% - 200px) / 6);
}

@media (max-width: 768px) {

    .price-table-section {
        margin: 0 0;
        overflow-x: auto;
    }

    .price-table {
        min-width: 700px;
    }

    .price-table th:first-child,
    .price-table td:first-child {
        width: 150px;
    }

    .price-table th:not(:first-child),
    .price-table td:not(:first-child) {
        width: 100px;
    }
}



.price-table th,
.price-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.price-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-color: var(--primary);
    font-size: 12px;
}

.price-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.price-table tr:hover {
    background-color: #ffefd5;
}

.price-table caption {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    text-align: left;
}

.table-note {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 15px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px;
}

.feature-card h3 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding-left: 15px;
    border-color: #ebebeb;
}

.feature-card ul li {
    padding: 15px 0px 15px 35px;
    line-height: 20px;
    position: relative;
    border-bottom: 1px solid rgb(71 71 71 / 10%);
    font-size: 16px;
}

.feature-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    color: var(--secondary);
}

@media (max-width: 1024px) {

    .features-grid {
        grid-template-columns: 1fr;
    }
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
    font-style: italic;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px auto;
}

.client-card {
    background: #f3f3f3;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 500;
    line-height: 19px;
}

.client-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 18px;
    font-weight: 400;
}

/* Блок автопарка */
.fleet-section {
    background: linear-gradient(135deg, #2b4268 0%, #2c4368 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.fleet-section:before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.fleet-section:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.fleet-section .section-title h2,
.fleet-section .section-title p {
    color: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: stretch;
    justify-items: center;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    max-width: 375px;
}

.fleet-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fleet-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}


.fleet-content {
    padding: 25px;
}

.fleet-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}

.fleet-card .class,
.service-description .class {
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
}

.fleet-features {
    list-style: none;
    margin: 20px 0;
}

.fleet-content p {
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;

}

.fleet-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fleet-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.fleet-features li>span {
    display: block;
}

.fleet-features li>span.l-title {
    font-size: 14px;
    line-height: 18px;
    max-width: 135px;
    font-weight: 400;
}


.fleet-features li>span.l-value {
    font-size: 17px;
    font-weight: 500;
}

.fleet-btn {
    text-align: center;
}


/* Блок FAQ */
.faq-section {
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px #e3ebfc, 0 24px 48px #e6ebf566;
}

.faq-question {
    background: #fff;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    color: var(--dark);
}

.faq-question:hover {
    background: #b2bcc9;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease;
}

.faq-answer-content {
    padding: 15px 0 20px;
    color: #373737;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.faq-answer-content ul {
    list-style: disc;
    list-style-position: inside;
    padding: 5px 0 5px 10px;
}

.faq-answer-content ol {
    list-style: decimal;
    list-style-position: inside;
    padding: 5px 0 5px 10px;
}



.faq-item.active .faq-question {
    background: #aab6c5;
    color: var(--dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.meropriyatie-event-landing .event-landing-hero__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px 0;
    margin-top: 14px;
}

.meropriyatie-event-landing .event-landing-hero__city {
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    font-weight: 500;
}

.event-landing-section {
    background: #f3f7fa;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-info-card {
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(29, 74, 103, 0.08);
    border-left: 4px solid #0086DF;
    height: 100%;
}

.event-info-card h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 21px;
    line-height: 28px;
}

.event-info-card__text,
.event-info-card__text p {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
}

.event-info-card__text p:last-child {
    margin-bottom: 0;
}

.meropriyatie-event-section .article_box_autopark {
    position: relative;
}

.meropriyatie-event-section h2.event-landing-autopark__title {
    position: relative;
    text-align: center;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 26px;
    color: #ffffff;
}

.meropriyatie-event-section .event-landing-autopark__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--secondary);
}

.event-landing-autopark__lead {
    max-width: 800px;
    margin: 0px auto 25px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    font-weight: 300;
    padding: 11px 0 0;
}

.event-landing-autopark__lead p {
    margin: 0px 0 12px;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 29px;
    font-size: 20px;
}

.event-landing-autopark__lead p:last-child {
    margin-bottom: 0;
}

.meropriyatie-event-advantages .advantage-list {
    margin-top: 10px;
}

.event-landing-cta {
    background: linear-gradient(135deg, #243A55 0%, #1a2b3f 100%);
}

.event-landing-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.event-landing-cta__content h2 {
    color: #FFFFFF;
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.2;
}

.event-landing-cta__text,
.event-landing-cta__text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 24px;
}

.event-landing-cta__text p:last-child {
    margin-bottom: 0;
}

.event-landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 24px;
}

.event-landing-cta__phone {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
}

.event-landing-cta__phone:hover {
    color: #fdd805;
    text-decoration: none;
}

.event-landing-cta__form {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 6px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .text-block-content {
        padding: 40px;
    }

    .section-title h1,
    .section-title h2 {
        font-size: 2.2em;
    }

    .event-landing-cta__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .event-landing-cta__content h2 {
        font-size: 28px;
    }

    .event-landing-cta__form {
        padding: 18px;
    }

    .section.text-section.tex-avto {
        padding: 15px 0 20px;
    }

    .text-block-content {
        padding: 25px;
    }

    .section-title h1,
    .section-title h2 {
        font-size: 23px;
    }



    .text-block h1 {
        font-size: 24px;
        line-height: 30px;

    }



    .text-block h2 {
        font-size: 23px;
        line-height: 29px;
        margin: 0 0 22px;
        font-weight: 600;
    }

    .section-title p {
        margin: 34px auto 0;
        font-size: 16px;
        line-height: 23px;

    }

    .clients-grid {
        grid-template-columns: 1fr;
    }


    .cta-block {

        padding: 35px 15px;
        margin: 20px auto;

    }

    .cta-block h2 {
        font-size: 25px;
        margin-bottom: 30px;
        font-weight: 700;
    }
}

@media (max-width: 576px) {

    .section-title h1,
    .section-title h2 {
        font-size: 23px;
    }

    .text-block h1 {
        font-size: 23px;
        line-height: 29px;
        margin: 0 0 22px;
        font-weight: 600;
    }


    .text-block h2 {
        font-size: 23px;
        line-height: 29px;
        margin: 0 0 22px;
        font-weight: 600;
    }
}



.bottom_form {
    padding: 50px 0;
}

.bottom_form .binge_withdrawal {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.bottom_form .withdrawal_form,
.bottom_form .withdrawal_phone {
    width: 50%;
    color: rgba(255, 255, 255, .95);
    text-align: center;
    min-height: 406px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bottom_form .withdrawal_phone::after {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--accent-color-1);
    opacity: 0.65;
}

.bottom_form .withdrawal_phone .phone_wrapper {
    position: relative;
    z-index: 5;
}

@media (max-width:767px) {

    .bottom_form .withdrawal_form,
    .bottom_form .withdrawal_phone {
        width: 100%;
        min-height: 320px;
        padding: 15px 0
    }
}

.bottom_form .withdrawal_form {
    background: var(--accent-color-3);
    background: linear-gradient(180deg, var(--accent-color-3) 0%, var(--accent-color-4) 70%);
}

.bottom_form .withdrawal_form .withdrawal_title {
    font-size: 20px;
    max-width: 280px;
    margin: 10px auto 30px;
    font-weight: 400;
    line-height: 26px;
}

.bottom_form .form_wrap {
    width: 100%;
    padding: 20px 35px
}

@media (max-width:991px) {
    .bottom_form .form_wrap {
        padding: 0 25px
    }
}

.bottom_form .withdrawal_phone {
    background-color: var(--accent-color-1);
    background-image: url(../images/withdrawal_phone.jpg);
    background-size: cover;
    background-position: center;
}

.bottom_form .withdrawal_phone .icon {
    margin: 0px auto 30px
}

@media (max-width:767px) {
    .bottom_form .withdrawal_phone .icon {
        margin: 0 auto 15px
    }
}

@media (max-width:991px) {
    .bottom_form .withdrawal_phone a {
        font-size: 29px
    }
}

.bottom_form .withdrawal_phone svg path {
    fill: rgba(255, 255, 255, .95)
}

.bottom_form .withdrawal_phone .title {
    font-size: 24px;
    margin: 0 0 5px;
    line-height: 30px;
}

.bottom_form .withdrawal_phone a {
    font-size: 38px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    line-height: 45px;
    text-decoration: none;
}

.bottom_form .withdrawal_phone a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.bottom_form .form_row+.form_row {
    margin: 30px 0 0
}

.bottom_form [type=submit] {
    margin: 0 auto;
    display: block;
    width: 100%
}

.bottom_form .form_control {
    background-color: rgba(255, 255, 255, .2);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .95);
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    background-repeat: no-repeat;
    outline: none;
}

.bottom_form .form_control::-webkit-input-placeholder {
    color: var(--placeholder-color-1);
}

.bottom_form .form_control::-moz-placeholder {
    color: var(--placeholder-color-1);
}

.bottom_form .form_control:-moz-placeholder {
    color: var(--placeholder-color-1);
}

.bottom_form .form_control:-ms-input-placeholder {
    color: var(--placeholder-color-1);
}

.bottom_form .f_TextArea .form_control {
    background-color: rgba(255, 255, 255, .2);
    max-height: 115px
}

.bottom_form .politika label {
    margin: 15px auto 0;
    font-size: 14px;
    font-weight: 300;
    display: block;
    position: relative
}

.bottom_form .politika label [type=checkbox] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0
}

.bottom_form .politika label [type=checkbox]:checked+span::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='SVGDoc' width='11' height='8' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 11 8'%3E%3Cdefs%3E%3Cpath d='M1225.83881,704.15827c-0.21481,-0.21259 -0.56305,-0.21259 -0.77785,0l-6.58928,6.50827l-2.53281,-2.5017c-0.21481,-0.21217 -0.56305,-0.21217 -0.77785,0c-0.21492,0.21217 -0.21492,0.55575 0,0.76792l2.92168,2.88587c0.21469,0.21259 0.56316,0.21259 0.77785,0l6.97826,-6.89243c0.21481,-0.21217 0.21481,-0.55617 0,-0.76792z' id='Path-0'/%3E%3C/defs%3E%3Cg transform='matrix%281,0,0,1,-1215,-704%29'%3E%3Cg%3E%3Cuse xlink:href='%23Path-0' fill='%2300895e' fill-opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.bottom_form .politika label>span {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 0 0 30px;
    text-align: left
}

.bottom_form .politika label>span::before {
    position: absolute;
    left: 0;
    top: 1px;
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, .95);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center
}

.bottom_form .politika label a {
    color: rgba(255, 255, 255, .95);
    text-decoration: underline
}

.bottom_form .politika label a:hover {
    text-decoration: none
}


.bottom_form .form_control.wpcf7-not-valid {
    background-color: #f95d5142;
    border-bottom: 1px solid #f95d51;
}

.checkboxcontainer .wpcf7-checkbox label input[type=checkbox],
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
    position: absolute;
    z-index: -1;
    display: none;
}

.checkboxcontainer .wpcf7-checkbox label span,
.wpcf7-acceptance .wpcf7-list-item label span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    padding: 2px 0 0;
    font-weight: 400;
}

.wpcf7-acceptance .wpcf7-list-item label span a {
    color: #ffe2b8;
    text-decoration: underline;
}


.wpcf7-acceptance .wpcf7-list-item label>span {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
}

.checkboxcontainer .wpcf7-checkbox label>span::before,
.wpcf7-acceptance .wpcf7-list-item label>span::before {
    position: relative;
    display: block;
    height: 22px;
    width: 22px;
    border: 2px solid #fff;
    box-sizing: border-box;
    margin-right: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    opacity: .6;
    cursor: pointer;
    flex-shrink: 0;
}

.wpcf7-acceptance .wpcf7-list-item label input+span::after {
    position: absolute;
    content: '';
    display: none;
}

.checkboxcontainer .wpcf7-checkbox label input[type=checkbox]:checked+span::after,
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:checked+span::after {
    content: '';
    position: absolute;
    display: block;
    left: 7px;
    width: 8px;
    height: 14px;
    border: solid var(--background-light);
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
}


.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
    display: none !important;
}





.services-section {
    background: linear-gradient(135deg, #2b4268 0%, #2c4368 100%);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.services-section:before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.services-section:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}



.services-section .section-title h2 {
    color: var(--light);
}

.services-section .section-title p {
    color: var(--light);

}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    max-width: 375px;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-image {
    height: 150px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.service-card:hover .service-image img {
    /* transform: scale(1.05);*/
    opacity: 1;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3em;
    margin: 0 0 15px;
    color: var(--light);
}

.service-description {
    font-size: 14px;
    line-height: 18px;
    color: #d9d9d9;
    font-weight: 400;
}

.service-description p {
    font-size: 14px;
    line-height: 18px;
    color: #d9d9d9;
}


.service-features {
    list-style: none;
    margin: 15px 0;
    color: #fff;
}

.service-features li {
    padding: 8px 0;
    padding-left: 29px;
    position: relative;
    font-size: 0.8em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    color: var(--secondary);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.read-more:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--light);
}

.read-more:hover:after {
    transform: translateX(5px);
    color: var(--light);
}

.show-more-btn {
    display: block;
    text-align: center;
    margin-top: 50px;
    padding: 12px 30px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.show-more-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hidden-service {
    display: none;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-section .section-title h2 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .services-section .section-title h2 {
        font-size: 1.8em;
    }

    .service-content {
        padding: 20px;
    }
}



.testimonial-grid .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}


.testimonial-grid .slick-initialized .slick-slide {
    display: block;
    flex-grow: 1;
    float: none;
    height: auto;
}

.testimonial-grid .slick-initialized .slick-slide>div {
    height: 100%;
    margin: 0 10px;
}


.slick-arrow {
    position: absolute;
    z-index: 1;
    padding: 0;
    font-size: 0;
    top: 50%;
    border: none;
    background-color: transparent;
    width: 22px;
    height: 42px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s linear
}

.slick-prev {
    position: absolute;
    width: 15%;
    height: 100%;
    top: 0;
    right: 99%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='42' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22 42'%3E%3Cdefs%3E%3Cpath d='M404.99886,7929.9968l20.40962,-20.98992l1.59279,1.63771l-18.81981,19.35279l18.81981,19.35454l-1.59279,1.63596l-18.81844,-19.35395v0.00117z' id='Path-0'/%3E%3C/defs%3E%3Cg transform='matrix%281,0,0,1,-405,-7909%29'%3E%3Cg%3E%3Cuse xlink:href='%23Path-0' fill='%237DA0C3' fill-opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

@media (max-width:768px) {
    .slick-prev {
        right: 96%
    }
}

.slick-prev:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='42' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22 42'%3E%3Cdefs%3E%3Cpath d='M404.99886,7929.9968l20.40962,-20.98992l1.59279,1.63771l-18.81981,19.35279l18.81981,19.35454l-1.59279,1.63596l-18.81844,-19.35395v0.00117z' id='Path-0'/%3E%3C/defs%3E%3Cg transform='matrix%281,0,0,1,-405,-7909%29'%3E%3Cg%3E%3Cuse xlink:href='%23Path-0' fill='%232C5282' fill-opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.slick-next {
    position: absolute;
    width: 15%;
    height: 100%;
    top: 0;
    left: 99%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='42' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22 42'%3E%3Cdefs%3E%3Cpath d='M945.00092,7929.9968l-20.40962,-20.98992l-1.59279,1.63771l18.81981,19.35279l-18.81981,19.35454l1.59279,1.63596l18.81844,-19.35395v0.00117z' id='Path-0'/%3E%3C/defs%3E%3Cg transform='matrix%281,0,0,1,-923,-7909%29'%3E%3Cg%3E%3Cuse xlink:href='%23Path-0' fill='%237DA0C3' fill-opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

@media (max-width:768px) {
    .slick-next {
        left: 96%
    }
}

.slick-next:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='42' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22 42'%3E%3Cdefs%3E%3Cpath d='M945.00092,7929.9968l-20.40962,-20.98992l-1.59279,1.63771l18.81981,19.35279l-18.81981,19.35454l1.59279,1.63596l18.81844,-19.35395v0.00117z' id='Path-0'/%3E%3C/defs%3E%3Cg transform='matrix%281,0,0,1,-923,-7909%29'%3E%3Cg%3E%3Cuse xlink:href='%23Path-0' fill='%232C5282' fill-opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

@media (max-width:1200px) {
    .slick-next {
        width: 8%
    }

    .slick-prev {
        width: 8%
    }
}



.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
}

.usage-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.usage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px auto;
    max-width: 900px;
    justify-content: space-around;
    align-items: stretch;
}

.pricing-column {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid rgba(12, 26, 58, 0.1);
    text-align: center;
}

.pricing-column h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--secondary);
    margin: 15px 0;
    line-height: 1.2;
}

.pricing-column ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    color: var(--dark);
}

.pricing-column ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1em;
}

.pricing-column ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--secondary);
}



.fleet-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.fleet {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fleet .item {
    display: grid;
    grid-template-columns: 180px 1fr 275px 150px 160px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    color: #000;
}

.fleet-photo img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.fleet-info strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.fleet-desc {
    font-size: 16px;
    color: #777;
}

.fleet-service ul {
    padding-left: 18px;
    margin: 0;
    font-size: 12px;
    color: #555;
}

.fleet-service li {
    margin-bottom: 4px;
}

.fleet-price {
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
}

.fleet-btn {
    text-align: center;
}

.btn-order {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-order:hover {
    background: #005f8d;
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
    .fleet .item {
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto auto;
    }

    .fleet-service {
        grid-column: 1 / span 2;
    }

    .fleet-price {
        grid-column: 1 / span 1;
        text-align: left;
    }

    .fleet-btn {
        grid-column: 2 / span 1;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .fleet .item {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
    }

    .fleet-photo img {
        max-width: 300px;
        margin: 0 auto;

    }

    .fleet-info,
    .fleet-service,
    .fleet-price,
    .fleet-btn {
        grid-column: 1 / span 1;
    }

    .fleet-price {
        text-align: center;
        margin-top: 10px;
    }

    .fleet-btn {
        margin-top: 10px;
        text-align: center;
    }
}

.fleet-features-tarifs ul {
    margin: 0;
    padding: 0;
}

.fleet-features-tarifs li {
    padding: 3px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.fleet-features-tarifs li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}



.section.route-section {
    background: var(--light);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
}


.yandex-route-container {
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#yandex-route-map {
    border-bottom: 1px solid #e0e0e0;
}

.route-info {
    padding: 15px 20px;
    background: #f9f9f9;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-info p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.route-distance {
    color: #2271b1;
    font-weight: 700;
    font-size: 18px;
}



.section.card {
    background: linear-gradient(135deg, #2b4268 0%, #2c4368 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 32px 0;
}

.section.card:before,
.section.card:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.section.card:before {
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
}

.section.card:after {
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
}

.section.card .container {
    position: relative;
    z-index: 1;
}

.section.card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 16px;
}

.routes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.route-card {
    background: #fff;
    padding: 16px;
    flex: 1 1 calc(25% - 16px);
    box-shadow: 0 6px 14px rgba(12, 20, 40, 0.08);
    text-decoration: none;
    color: inherit;
    color: #0c1428;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(12, 20, 40, 0.12);
}

.route-card strong {
    font-size: 1em;
    display: block;
    color: #0c1428;
}

.route-card div {
    font-size: 0.9em;
    line-height: 1.4;
}

.route-card .price {
    margin-top: 8px;
    color: #c49a3d;
    font-weight: 700;
    font-size: 1rem;
}

/* Планшет */
@media (max-width: 992px) {
    .route-card {
        flex: 1 1 calc(50% - 16px);
    }
}

/* Телефон */
@media (max-width: 576px) {
    .routes {
        flex-direction: column;
    }

    .route-card {
        flex: 1 1 100%;
    }
}


.pagination {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 14px;
}

.pagination a,
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 4px 4px;
    border: 1px solid transparent;
    color: #fff;
    text-decoration: none;
    background-color: var(--accent-color-4);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--primary);
    color: #fff;
}

.pagination .current {
    background-color: var(--dark);
    color: #fff;
    border-color: transparent;
    cursor: default;
}


.yandex-route-public {
    margin: 0;
}

.yandex-route-public .search-controls {
    display: flex;
    gap: 10px;
    margin: 15px 15px;
}

@media (max-width: 768px) {
    .yandex-route-public .search-controls {
        display: flex;
        gap: 10px;
        margin: 15px 15px;
        flex-direction: column;
    }
}

.yandex-route-public .search-box {
    flex: 1;
    display: flex;
}

.yandex-route-public .search-box input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: var(--dark);
    outline: 0;

}

.yandex-route-public .search-box input:focus-visible {
    outline: 0;
    background: #ebebeb;
}

.yandex-route-public .search-box button {
    padding: 0 15px;
    background: var(--accent-color-1);
    color: white;
    border: none;
    cursor: pointer;
}

.yandex-route-public .route-info {
    padding: 15px;
    background: #f9f9f9;
}

.yandex-route-public .tariffs-prices {
    margin-top: 15px;
}

.yandex-route-public .tariffs-prices h4 {
    margin-bottom: 10px;
}

.yandex-route-public .tariffs-prices p {
    margin: 8px 0;
    padding: 8px;
    background: #fff;
    border-left: 3px solid #2271b1;
}



.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    background: #374d70;
    border: 1px solid #374d70;
    border-radius: 3px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    text-decoration: none;
}

.category-card__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0px;
    color: #fff;
    text-align: center;
}

.category-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}



/* Long-term Rental Pricing Section Styles */
.long-term-rental-pricing {
    padding: 40px 10px;
    background: linear-gradient(180deg, #2b426852 0%, #ffffff 80%);
}

.rental-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rates-header {
    text-align: center;
    margin-bottom: 50px;
}

.rates-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.rates-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Discount Tiers */
.rental-discount-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.rental-tier-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid #ffffff;
}

.rental-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.rental-tier-card.featured {
    border-color: #2c5aa0;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.rental-tier-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c5aa0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.rental-tier-period {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.rental-tier-discount {
    font-size: 32px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.rental-tier-description {
    font-size: 14px;
    color: #666;
}

/* Pricing Table */
.rental-rates-table {
    overflow-x: auto;
    margin-bottom: 50px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.rental-rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rental-rates-table thead {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
    color: white;
}

.rental-rates-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-rates-table th.rental-car-class {
    text-align: left;
}

.rental-rates-table th.rental-best-price {
    background: #1e3a6b;
    position: relative;
}

.rental-star-icon {
    width: 18px;
    height: 18px;
    color: #ffd700;
    vertical-align: middle;
    margin-right: 5px;
}

.rental-best-hint {
    color: #ffd700;
    font-weight: 700;
}

.rental-rates-table .rental-hint {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
    margin-top: 5px;
    white-space: nowrap;
}

.rental-rates-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.rental-rates-table tbody tr:hover {
    background: #f8f9fb;
}

.rental-rates-table td {
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.rental-rates-table td.rental-car-name {
    text-align: left;
    white-space: normal;
}

.rental-rates-table .rental-car-name strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.rental-rates-table .rental-car-models {
    font-size: 13px;
    color: #666;
}

.rental-rates-table td.rental-highlight {
    background: #e8f4f8;
    font-weight: 700;
    color: #2c5aa0;
    font-size: 18px;
    white-space: nowrap;
}

/* Included Features */
.rental-included-features {
    margin-bottom: 40px;
}

.rental-included-features h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.rental-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.rental-feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 26%);
}

.rental-feature-icon {
    width: 24px;
    height: 24px;
    color: #2c5aa0;
    margin-right: 12px;
    flex-shrink: 0;
}

.rental-feature-item span {
    font-size: 14px;
    color: #333;
}

/* Pricing Notes */
.rental-pricing-notes {
    background: #fff9e6;
    border-left: 4px solid #ff9800;
    padding: 20px 25px;
    border-radius: 0;
    margin-bottom: 40px;
}

.rental-pricing-notes p {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.rental-pricing-notes strong {
    color: #1a1a1a;
}

/* CTA Section */
.rental-pricing-cta {
    text-align: center;
}

.rental-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.rental-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    color: var(--secondary);
    text-decoration: none;
}

.rental-cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.rental-cta-note a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.rental-cta-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rates-header h2 {
        font-size: 28px;
    }

    .rental-rates-table {
        font-size: 14px;
    }

    .rental-rates-table th,
    .rental-rates-table td {
        padding: 12px 8px;
    }

    .rental-tier-discount {
        font-size: 28px;
    }

    .rental-discount-tiers {
        grid-template-columns: 1fr;
    }
}


/* Group Transfer Benefits Section with Unique Classes */
.gt-benefits-section {
    padding: 0 10px;
    background: #ffffff;
}

.gt-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Titles */
.gt-section-title {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.gt-section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Block */
.gt-advantages-block {
    margin-bottom: 80px;
}

.gt-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gt-advantage-item {
    background: #f8f9fb;
    padding: 35px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gt-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gt-advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gt-advantage-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.gt-advantage-title {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.gt-advantage-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Services Block */
.gt-services-block {
    margin-bottom: 60px;
}

.gt-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gt-service-card {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 30px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gt-service-card:hover {
    border-color: #2c5aa0;
    box-shadow: 0 4px 16px rgba(44, 90, 160, 0.1);
}

.gt-service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.gt-service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gt-service-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #2c5aa0;
}

.gt-service-title-block {
    flex: 1;
}

.gt-service-title {
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.gt-service-badge {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gt-service-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gt-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gt-service-features li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.gt-service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 16px;
}

/* CTA Section */
.gt-benefits-cta {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fb;
}

.gt-cta-button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.gt-cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.gt-cta-note {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.gt-cta-note a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.gt-cta-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gt-benefits-section {
        padding: 50px 15px;
    }

    .gt-section-title {
        font-size: 28px;
    }

    .gt-section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .gt-advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gt-advantage-item {
        padding: 25px 20px;
    }

    .gt-advantage-icon {
        width: 50px;
        height: 50px;
    }

    .gt-advantage-icon svg {
        width: 28px;
        height: 28px;
    }

    .gt-advantage-title {
        font-size: 18px;
    }

    .gt-advantage-text {
        font-size: 14px;
    }

    .gt-services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gt-service-card {
        padding: 20px;
    }

    .gt-service-header {
        gap: 12px;
    }

    .gt-service-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .gt-service-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .gt-service-title {
        font-size: 18px;
    }

    .gt-cta-button-primary {
        padding: 16px 35px;
        font-size: 16px;
    }
}




/* --- Стили для блока информации об отеле --- */

.hotel-info-section {
    padding: 40px 0;
    background-color: #abb4c3;

}

.hotel-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
}

.hotel-details h2,
.hotel-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.detail-items {
    display: flex;
    gap: 15px;
}

.hotel-details .detail-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--dark);


}


.hotel-details .detail-item strong {
    display: block;
    margin-right: 8px;
    font-weight: 600;
    color: #5d5d5d;
}

.hotel-summary,
.hotel-summary p {
    color: var(--dark);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .hotel-info-grid {
        grid-template-columns: 1fr;
        /* Одна колонка на мобильных */
        gap: 20px;
    }

    .hotel-details h2,
    .hotel-summary h3 {
        font-size: 20px;
    }
}

/* Policy pages typography */
body.policy-doc-page .item-page,
body.policy-doc-page #hm_content .bordered {
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 28px 30px;
}

body.policy-doc-page .item-page h1,
body.policy-doc-page #hm_content .title.title_48 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

body.policy-doc-page .item-page h2,
body.policy-doc-page #hm_content h2 {
    margin: 26px 0 14px;
    padding-left: 12px;
    border-left: 4px solid #d12727;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f1f1f;
}

body.policy-doc-page .item-page h3,
body.policy-doc-page #hm_content h3,
body.policy-doc-page .item-page h4,
body.policy-doc-page #hm_content h4 {
    margin: 22px 0 10px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: #262626;
}

body.policy-doc-page .item-page p,
body.policy-doc-page .item-page li,
body.policy-doc-page #hm_content p,
body.policy-doc-page #hm_content li {
    font-size: 17px;
    line-height: 1.72;
    color: #323232;
}

body.policy-doc-page .item-page ul,
body.policy-doc-page .item-page ol,
body.policy-doc-page #hm_content ul,
body.policy-doc-page #hm_content ol {
    margin: 0 0 16px 22px;
}

body.policy-doc-page .item-page a,
body.policy-doc-page #hm_content a {
    color: #c02020;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.policy-doc-page .item-page blockquote,
body.policy-doc-page #hm_content blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 4px solid #d12727;
    background: #faf6f6;
    color: #2f2f2f;
}

@media (max-width: 768px) {

    body.policy-doc-page .item-page,
    body.policy-doc-page #hm_content .bordered {
        padding: 18px 16px;
        border-radius: 10px;
    }

    body.policy-doc-page .item-page h1,
    body.policy-doc-page #hm_content .title.title_48 {
        font-size: 27px;
        margin-bottom: 16px;
    }

    body.policy-doc-page .item-page h2,
    body.policy-doc-page #hm_content h2 {
        font-size: 21px;
        margin-top: 18px;
    }

    body.policy-doc-page .item-page p,
    body.policy-doc-page .item-page li,
    body.policy-doc-page #hm_content p,
    body.policy-doc-page #hm_content li {
        font-size: 16px;
        line-height: 1.62;
    }
}

/* =============================================================
   Мероприятие Event Landing – доработка блоков
   ============================================================= */

/* 3. Hero H1 — уменьшенный шрифт */
.meropriyatie-event-landing #top_image_block .slide h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
}

/* 5. Intro block — уменьшен отступ сверху */
.meropriyatie-event-intro {
    padding-top: 20px;
    padding-bottom: 30px;
}

/* 1. Блок «Для кого» */
.event-landing-audience {
    background: linear-gradient(135deg, #1b2d44 0%, #243A55 100%);
    padding: 60px 0 80px;
}

.event-landing-audience .section-title h2 {
    color: #fff;
    margin: 0 auto 20px;
}

.event-info-grid--audience {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.event-info-grid--audience .event-info-card {
    border: none;
    background: rgba(255, 255, 255, 0.06);
    padding: 20px 22px;
    position: relative;
    height: auto;
    box-shadow: none;
    transition: background 0.2s;
}

.event-info-grid--audience .event-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.event-info-grid--audience .event-info-card::before {
    display: none;
}

.event-info-grid--audience .event-info-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
}

.event-info-grid--audience .event-info-card__text,
.event-info-grid--audience .event-info-card__text p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0;
}

/* 2. Блок «Что мы обеспечим» */
.event-landing-services {
    background: #f0f2f5;
}

.event-info-grid--services {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.event-info-grid--services .event-info-card {
    border: none;
    border-bottom: 3px solid #c2c9d3;
    background: #dddddd;
    padding: 20px 22px;
    position: relative;
    box-shadow: none;
    height: auto;
}

.event-info-grid--services .event-info-card::before {
    display: none;
}

.event-info-grid--services .event-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #1a2b3f;
    margin-bottom: 8px;
}

.event-info-grid--services .event-info-card__text,
.event-info-grid--services .event-info-card__text p {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0;
}

/* 6. Слайдер автопарка: заголовок машины на тёмном фоне */
.meropriyatie-event-section .article_box_autopark .car_title {
    color: #111;
}

.meropriyatie-event-section .autopark-shortcode__box.slick-initialized {
    display: block;
}

.meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-list {
    margin: 0;
    padding-left: 0;
}

.meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-slide {
    margin: 0 20px 0 0;
    box-sizing: border-box;
    background: transparent;
}

.meropriyatie-event-section .article_box_autopark .b_card {
    border: 1px solid #d6dde5;
    background: #ffffff;
}

.meropriyatie-event-section .article_box_autopark .b_gallery {
    padding: 14px 14px 0 14px;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc {
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-dots {
    position: static;
    width: 100%;
    margin: 18px 0 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc .car_title {
    background: #ffffff;
    margin: 0;
    padding: 15px 0 4px;
    line-height: 1.25;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    order: 2;
    color: #111;
    height: 80px;
    overflow: hidden;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price {
    background: transparent;
    padding: 0;
    margin: 0;
    border-top: none;
    order: 1;
    display: flex;
    flex-direction: column;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body {
    display: flex;
    align-items: stretch;
    gap: 5px;
    line-height: 1.25;
    padding: 4px 5px;
    border-bottom: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(1) {
    order: 2;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(2) {
    order: 3;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(3) {
    order: 1;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_dot {
    display: block;
    flex: 1 1 auto;
    min-width: 24px;
    height: 13px;
    border-bottom: 1px dotted #d6dde5;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_value {
    white-space: nowrap;
    height: 24px;
    font-size: 16px;
}

.meropriyatie-event-section .price_list_old {
    color: #585858;
    font-size: 14px;
}


.meropriyatie-event-section .article_box_autopark .b_car_desc_name {
    color: #4b5563;
    height: 22px;
    display: block;
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(1) .b_car_desc_name,
.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(2) .b_car_desc_name {
    font-size: 0;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(1) .b_car_desc_name::before {
    content: "Аэропорт Казань";
    font-size: 15px;
    line-height: 22px;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body:nth-child(2) .b_car_desc_name::before {
    content: "ЖД Вокзал";
    font-size: 15px;
    line-height: 22px;
}

.meropriyatie-event-section .article_box_autopark .b_car_desc_value {
    text-align: right;
}

.meropriyatie-event-section .article_box_autopark .order_button {
    order: 3;
    padding: 15px 0 0;
}

.meropriyatie-event-section .article_box_autopark .order_button .order_form {
    background: #ed9f1c;
    border-color: #ed9f1c;
    color: #ffffff;
    padding: 0;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.75px;
}

.meropriyatie-event-section .article_box_autopark .order_button .order_form:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: #ffffff;
}

@media (max-width: 991px) {
    .section-ordering.meropriyatie.meropriyatie-event-advantages h3 {
        font-size: 26px;
        line-height: 1.3;
        padding-bottom: 28px;
    }

    .meropriyatie-event-section h2.event-landing-autopark__title {
        font-size: 22px;
        line-height: 1.28;
        margin-bottom: 20px;
    }

    .home_page_auto.meropriyatie.meropriyatie-event-section {
        padding-bottom: 46px;
    }

    .meropriyatie-event-section .article_box_autopark .b_car_desc .car_title {
        height: 72px;
        font-size: 20px;
        line-height: 1.2;
        padding: 12px 0 3px;
    }
}

@media (max-width: 767px) {
    .section-ordering.meropriyatie.meropriyatie-event-advantages h3 {
        font-size: 22px;
        line-height: 1.28;
        padding-bottom: 22px;
    }

    .meropriyatie-event-section h2.event-landing-autopark__title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .home_page_auto.meropriyatie.meropriyatie-event-section {
        padding-bottom: 34px;
    }

    .meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-list {
        margin: 0;
        padding-left: 0;
    }

    .meropriyatie-event-section .autopark-shortcode__box.slick-initialized .slick-slide {
        margin: 0 12px 0 0;
    }

    .meropriyatie-event-section .article_box_autopark .b_gallery {
        padding: 10px 10px 0 10px;
    }

    .meropriyatie-event-section .article_box_autopark .b_car_desc .car_title {
        height: 64px;
        font-size: 18px;
        line-height: 1.2;
        padding: 10px 0 2px;
    }

    .meropriyatie-event-section .article_box_autopark .b_car_desc_price .b_car_desc_body {
        padding: 8px 10px;
    }
}

/* Стрелки слайдера на тёмном фоне автопарка */
.meropriyatie-event-section .slick-prev,
.meropriyatie-event-section .slick-next {
    z-index: 5;
}

.meropriyatie-event-section .slick-prev:before,
.meropriyatie-event-section .slick-next:before {
    color: #fff;
    opacity: 0.85;
}

/* 7. Блок преимуществ — 5 пунктов в 2 колонки */

.meropriyatie-event-advantages .advantage-list {
    justify-content: flex-start;
}

.meropriyatie-event-advantages .advantage-list .icon-blok-inner {
    flex-basis: calc(50% - 30px);
    max-width: 560px;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .event-landing-audience {
        padding: 45px 0 55px;
    }

    .event-landing-audience .section-title h2 {
        margin-bottom: 16px;
    }

    .event-info-grid--audience {
        gap: 16px;
    }

    .event-info-grid--audience .event-info-card {
        padding: 18px;
    }

    .event-info-grid--audience .event-info-card h3 {
        font-size: 17px;
        line-height: 22px;
    }

    .event-info-grid--audience .event-info-card__text,
    .event-info-grid--audience .event-info-card__text p {
        font-size: 14px;
        line-height: 20px;
    }

    .meropriyatie-event-advantages .advantage-list .icon-blok-inner {
        flex-basis: 100%;
        max-width: 100%;
    }

    .event-info-grid--audience,
    .event-info-grid--services {
        grid-template-columns: 1fr;
    }

    .event-landing-autopark__lead {
        max-width: 720px;
        font-size: 16px;
        line-height: 23px;
        padding-top: 8px;
    }

    .event-landing-autopark__lead p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 600px) {
    .event-landing-audience {
        padding: 35px 0 45px;
    }

    .event-landing-audience .section-title h2 {
        margin-bottom: 14px;
    }

    .event-info-grid--audience {
        gap: 12px;
    }

    .event-info-grid--audience .event-info-card {
        padding: 16px;
    }

    .event-info-grid--audience .event-info-card h3 {
        font-size: 16px;
        line-height: 21px;
    }

    .event-info-grid--audience .event-info-card__text,
    .event-info-grid--audience .event-info-card__text p {
        font-size: 14px;
        line-height: 20px;
    }

    .event-landing-autopark__lead {
        max-width: 100%;
        margin: 0 auto 18px;
        font-size: 15px;
        line-height: 22px;
        padding-top: 6px;
    }

    .event-landing-autopark__lead p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }

}

.breadcrums.meropriyatie {
    background: #1c2f47;
}

.breadcrums.meropriyatie .breadcrumbs__body a {
    color: #c9c9c9cc;
}

.breadcrums.meropriyatie .breadcrumbs__body a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrums.meropriyatie .breadcrumbs__body .current {
    color: #dddddd;
}