/* =====================================================================
   chrome.css — donor HEADER + FOOTER styles for rosperevozki.ru/blog
   Extracted from astra-child  assets/css/style.min2.css  (the main-site
   design system that the blog child theme re-uses). 236 rules.

   Covers: reset bits (html/body/a/ul/li/p/img/button), @font-face
   (SourceSansPro + GothamPro), .page-header / .header* / .menu* /
   .contact* / .logo / .svg-icon / .button / .to-top / .footer* /
   .menu-footer* / .soc-* / .popup-form*, plus their @media breakpoints.

   Font @font-face url()s were rewritten to ABSOLUTE donor URLs so the
   fonts load no matter where you enqueue this file. (If you self-host
   the fonts under <theme>/assets/fonts/, revert to url(../fonts/...).)

   This file is SELF-CONTAINED for the chrome: it does NOT depend on
   Astra's framework CSS (the donor header/footer are custom markup,
   not Astra's .site-header/.ast-* builder). Enqueue AFTER Astra so the
   custom classes win. See notes.md.
   ===================================================================== */

body,
html {
    margin: 0;
    height: 100%;
    font-size: 16px;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 320px;
    -ms-overflow-style: scrollbar;
    -ms-text-size-adjust: 100%;
    line-height: 1.15;
}
body {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    color: #2b2929;
    background-color: #fff;
    font-family: SourceSansPro,Arial,sans-serif;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -ms-backface-visibility: hidden;
    line-height: 1.2;
}
a {
    background-color: transparent;
}
button,
input {
    overflow: visible;
}
body:after {
    display: table;
    clear: both;
    content: "";
}
h1 {
    color: #2b2929;
    margin: 0 0 30px;
    font-size: 30px;
    line-height: 1.3;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    word-wrap: break-word;
    word-break: break-word;
    font-family: SourceSansPro,Arial,sans-serif;
    font-weight: 700;
    overflow-wrap: break-word;
}
h2 {
    font-size: 22px;
    color: #6b380d;
    line-height: 1.4;
    text-align: center;
    padding: 20px 0 0;
}
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5em;
    color: #2b2929;
    line-height: 1.2;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 1em;
}
p {
    margin: 0 0 20px;
    font-weight: 300;
    font-style: normal;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 20px;
    line-height: 1.55;
}
a,
button {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
a,
a:hover {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: #5dc12e;
}
button {
    cursor: pointer;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border: 0;
}
ol,
ul {
    padding-left: 2em;
    list-style-position: inside;
}
.field__field input,
.field__field select,
.field__field textarea,
table {
    width: 100%;
}
.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.svg-icon--arrow-left,
.svg-icon--arrow-right {
    width: 2.5em;
    font-size: 1.25rem;
}
.svg-icon--email {
    width: 1.142857142857143em;
    font-size: 0.875rem;
    width: 24px !important;
}
.svg-icon--location {
    width: 0.736842105263158em;
    font-size: 1.1875rem;
}
.svg-icon--phone,
.svg-icon--search {
    width: 1em;
    font-size: 1.125rem;
}
.svg-icon--triangle {
    width: 0.888888888888889em;
    font-size: 1.125rem;
}
.svg-icon--user {
    width: 0.789473684210526em;
    font-size: 1.1875rem;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.button,
.button:hover {
    text-decoration: none;
    color: #fff;
}
.button,
.button::before {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 15px 30px 13px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    border: none;
    background: -webkit-gradient(linear,left top,left bottom,from(#ff9c68),to(#d16537));
    background: -webkit-linear-gradient(top,#ff9c68 0,#d16537 100%);
    background: -moz- oldlinear-gradient(top,#ff9c68 0,#d16537 100%);
    background: -o-linear-gradient(top,#ff9c68 0,#d16537 100%);
    background: linear-gradient(180deg,#ff9c68 0,#d16537 100%);
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-align: center;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    position: relative;
    -webkit-box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
    -moz-box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
    box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
    background-color: #d16537;
}
.button::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: -webkit-gradient(linear,left top,left bottom,from(#ff9c68),to(#e77c4e));
    background: -webkit-linear-gradient(top,#ff9c68 0,#e77c4e 100%);
    background: -moz- oldlinear-gradient(top,#ff9c68 0,#e77c4e 100%);
    background: -o-linear-gradient(top,#ff9c68 0,#e77c4e 100%);
    background: linear-gradient(180deg,#ff9c68 0,#e77c4e 100%);
    background-color: #e77c4e;
    -webkit-box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
    -moz-box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
    box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
}
.button:hover {
    border-color: #5dc12e;
    background-color: #5dc12e;
}
.button:hover::before {
    opacity: 1;
}
.button--small {
    min-height: 36px;
    padding: 11px 30px 9px;
    font-size: 11px;
}
.button--big {
    min-height: 50px;
    padding: 18px 30px 16px;
    font-size: 16px;
}
.button--frame-blue,
.button--frame-red {
    color: #369;
    border-color: #369;
    background-color: transparent;
}
.button--frame-blue:hover {
    color: #fff;
    border-color: #369;
    background-color: #369;
}
.button--frame-red {
    color: #c33;
    border-color: #c33;
}
.button--frame-red:hover {
    color: #fff;
    border-color: #c33;
    background-color: #c33;
}
.button__caption,
.button__svg-icon {
    position: relative;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
}
.button__caption {
    z-index: 10;
    flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
}
.button__svg-icon {
    top: -1px;
    display: inline-block;
    flex: 0 0 auto;
    margin-right: 12px;
    margin-left: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
}
.button--icon-right .button__svg-icon {
    order: 2;
    margin-right: 0;
    margin-left: 12px;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-order: 2;
}
.btn-menu {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 30px;
    height: 30px;
    min-height: 12px;
    padding: 0;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: 0 0;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
}
.btn-menu::before {
    top: 50%;
    margin-top: -2px;
}
.btn-menu:hover::before {
    background-color: #5dc12e;
}
.btn-menu.active {
    visibility: visible;
}
.btn-menu.active::before {
    opacity: 0;
}
.btn-menu__caption,
.btn-menu__icon {
    flex: 0 0 auto;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
}
.btn-menu__caption {
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}
.btn-menu__icon {
    position: relative;
    margin-right: 12px;
}
.btn-menu::before,
.btn-menu__icon::after,
.btn-menu__icon::before {
    position: absolute;
    left: 0;
    content: "";
}
.btn-menu__icon::before {
    top: -5px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
}
.btn-menu__icon::after {
    top: 5px;
    -webkit-transition: all 70ms linear;
    -moz-transition: all 70ms linear;
    -o-transition: all 70ms linear;
    transition: all 70ms linear;
    -webkit-transform-origin: left bottom;
    -moz-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    -o-transform-origin: left bottom;
    transform-origin: left bottom;
}
.btn-menu__icon,
.btn-menu__icon::after,
.btn-menu__icon::before {
    display: block;
    width: 18px;
    height: 2px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #fff;
}
.btn-menu.active .btn-menu__icon {
    background-color: transparent;
}
.btn-menu.active .btn-menu__icon::before {
    top: -6px;
    left: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-menu.active .btn-menu__icon::after {
    top: 6px;
    left: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.field {
    position: relative;
    display: block;
    width: 100%;
}
.field__label {
    display: block;
    margin-bottom: 10px;
    color: #2b2929;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}
.field__required {
    color: #c00;
}
.field__helpers {
    display: block;
    margin-top: 5px;
}
.field__hint {
    display: block;
    margin: 0;
    color: #999;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}
.field__field {
    position: relative;
}
.field__field input,
.field__field textarea {
    display: block;
    padding: 15px 20px 14px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #2b2929;
    border: 1px solid #409817;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
    -moz-box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
    box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.field__field input:invalid,
.field__field textarea:invalid {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.field__field input:focus,
.field__field input:hover,
.field__field textarea:focus,
.field__field textarea:hover {
    border-color: #ff9d6a;
    outline: 0;
}
.field__field input::-webkit-input-placeholder,
.field__field textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #2b2929;
}
.field__field input:-moz-placeholder,
.field__field input::-moz-placeholder,
.field__field textarea:-moz-placeholder,
.field__field textarea::-moz-placeholder {
    opacity: 1;
    color: #2b2929;
}
.field__field input:-ms-input-placeholder,
.field__field textarea:-ms-input-placeholder {
    opacity: 1;
    color: #2b2929;
}
.field__field input::-webkit-input-placeholde,
.field__field textareainput::-webkit-input-placeholde {
    opacity: 1;
    color: #2b2929;
}
.ios .field__field input,
.ios .field__field textarea {
    font-size: 16px;
}
.field--icon .field__field input,
.field--icon .field__field textarea {
    padding-right: 40px;
}
.field--error .field__field input,
.field--error .field__field textarea {
    color: red;
    border-color: red;
}
.field--error .field__field input::-webkit-input-placeholder,
.field--error .field__field textarea::-webkit-input-placeholder {
    opacity: 1;
    color: red;
}
.field--error .field__field input:-moz-placeholder,
.field--error .field__field input::-moz-placeholder,
.field--error .field__field textarea:-moz-placeholder,
.field--error .field__field textarea::-moz-placeholder {
    opacity: 1;
    color: red;
}
.field--error .field__field input:-ms-input-placeholder,
.field--error .field__field textarea:-ms-input-placeholder {
    opacity: 1;
    color: red;
}
.field--error .field__field input::-webkit-input-placeholde,
.field--error .field__field textareainput::-webkit-input-placeholde {
    opacity: 1;
    color: red;
}
.field__field input {
    height: 50px;
}
.field__field textarea {
    height: 120px;
    resize: none;
}
.field__icon {
    position: absolute;
    top: 25px;
    right: 27px;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translate(50%,-50%);
    -moz-transform: translate(50%,-50%);
    -ms-transform: translate(50%,-50%);
    -o-transform: translate(50%,-50%);
    transform: translate(50%,-50%);
    fill: #ff9d6a;
}
input:focus+.field__icon,
input:hover+.field__icon {
    fill: #5dc12e;
}
.field__error {
    display: block;
    margin: 5px 0 -5px;
    color: red;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}
.error-style--popup .field__error,
.error-style--popup-top .field__error {
    position: absolute;
    z-index: 100;
    left: 0;
    display: inline-block;
    max-width: 100%;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 12px;
}
.error-style--popup .field__error {
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.15);
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    font-weight: 300;
    line-height: 18px;
    top: 92%;
    padding: 8px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #ffc;
}
.error-style--popup .field__error::after,
.error-style--popup .field__error::before {
    position: absolute;
    top: -7px;
    left: 10px;
    display: block;
    width: 14px;
    height: 7px;
    content: "";
    border-width: 0 7px 7px;
    border-style: solid;
    border-color: transparent transparent #ddd;
}
.error-style--popup .field__error::after {
    top: -6px;
    border-width: 0 6px 6px;
    border-color: transparent transparent #fdfcd3;
}
.error-style--popup-top .field__error {
    top: -36px;
    padding: 7px 10px;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fc5851;
}
.error-style--popup-top .field__error::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    display: block;
    width: 16px;
    height: 8px;
    margin-left: -8px;
    content: "";
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #fc5851 transparent transparent;
}
.field--type-checkbox,
.field--type-radio {
    position: relative;
    display: inline-block;
    width: auto;
}
.field--type-checkbox input,
.field--type-radio input {
    display: none;
    margin: 0;
    padding: 0;
    opacity: 0;
}
.field--type-radio .field__label {
    display: inline-block;
    min-height: 20px;
    margin: 0;
    padding: 0 0 0 32px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #2b2929;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    -webkit-touch-callout: none;
}
.field--type-radio .field__label .field__check {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid #d1d1d1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
}
.field--type-checkbox .field__label:hover .field__check,
.field--type-radio .field__label:hover .field__check {
    border-color: #999;
}
.field--type-radio input:checked+.field__label .field__check::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #09f;
}
.field--type-checkbox .field__label {
    display: inline-block;
    min-height: 20px;
    margin: 0;
    padding: 0 0 0 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #2b2929;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    -webkit-touch-callout: none;
}
.field--type-checkbox .field__label .field__check {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid #d1d1d1;
}
.field--type-checkbox input:checked+.field__label .field__check::after {
    position: absolute;
    top: 2px;
    left: 7px;
    display: block;
    width: 6px;
    height: 11px;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-width: 2px;
    border-style: none solid solid none;
    border-color: #09f;
}
.field--type-checkbox.field--error .field__label .field__check {
    border-color: #c99;
}
.field--type-checkbox .field__error {
    padding-left: 30px;
}
.form,
.form--frame {
    display: block;
}
.form--frame {
    padding: 20px;
    border: 10px solid rgba(0,0,0,.07);
    background-color: #4caf50;
}
.form__subtitle,
.form__title {
    display: block;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
}
.form__title a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
.form__title a:hover {
    text-decoration: underline;
    color: #fff;
}
.form__subtitle {
    margin: -15px 0 20px;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.form__submit {
    width: 100%;
}
.form__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px -10px;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
}
.form__col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 0 15px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
}
.form__col,
.logo {
    display: block;
}
.logo--header {
    max-width: 160px;
}
.logo img {
    max-width: 100%;
    height: auto;
    border: none;
}
.contact,
.logo img {
    display: block;
}
.contact__button {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
}
.contact__button .svg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    fill: #5dc12e;
}
.contact.expanded .contact__button .svg-icon {
    opacity: 0.5;
}
.contact__content {
    /*position: absolute;*/
    z-index: 200;
    top: 100%;
    right: 15px;
    left: 15px;
    display: block;
    padding: 10px 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    /*-webkit-box-shadow: 0 7px 15px rgba(0,0,0,.2);
    -moz-box-shadow: 0 7px 15px rgba(0,0,0,.2);
    box-shadow: 0 7px 15px rgba(0,0,0,.2);*/
}
.contact__address,
.contact__phone {
    display: block;
    margin: 0;
    text-align: center;
    color: #2b2929;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.285;
}
.contact__phone {
    margin: 6px 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
	color: #2f6b34;
}
.contact__phone svg {
    margin-right: 7px;
}
.breadcrumbs__item a:hover,
.contact__email,
.contact__email:hover,
.contact__phone:hover {
    text-decoration: none;
    color: #5dc12e;
}
.contact__phone img {
    width: 21px;
    margin-left: 10px;
    margin-top: -4px;
}
.contact__email {
    display: block;
    margin: 6px 0;
    text-align: center;
    color: #2b2929;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
}
.search__btn-search .svg-icon {
    position: relative;
    top: -2px;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0.5;
    fill: #fff;
}
.search__btn-search:hover .svg-icon {
    opacity: 1;
}
.search__btn-submit .svg-icon {
    position: relative;
    top: -2px;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    fill: #ff9d6a;
}
.search__btn-submit:hover .svg-icon {
    fill: #5dc12e;
}
.video__icon,
.video__icon .svg-icon,
.video__icon::after,
.video__icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.video__icon .svg-icon {
    z-index: 5;
    display: inline-block;
    width: 19px;
    height: 17px;
    -webkit-transform: translate(-38%,-50%);
    -moz-transform: translate(-38%,-50%);
    -ms-transform: translate(-38%,-50%);
    -o-transform: translate(-38%,-50%);
    transform: translate(-38%,-50%);
    fill: #fbdf50;
}
.menu {
    display: block;
}
.menu__items {
    position: absolute;
    z-index: 200;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 15px 0;
    list-style: none;
    background-color: #60310a;
}
.menu__item {
    flex: 0 1 auto;
    margin: 0;
    padding: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
}
.menu__item a {
    display: block;
    padding: 13px 15px;
    text-decoration: none;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 18px;
}
.menu__item a.current,
.menu__item a:hover {
    text-decoration: underline;
}
.menu-footer,
.menu__item {
    display: block;
}
.menu-footer__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.menu-footer__item {
    display: block;
    margin: 0 0 9px;
    padding: 0;
    color: #dfc0a5;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
}
.menu-footer__item a {
    text-decoration: none;
    color: #dfc0a5;
}
.menu-footer__item a:hover {
    text-decoration: none;
    color: #ff9d6a;
}
.header {
    display: block;
}
.header__container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    max-width: 1250px;
    height: 70px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
}
.header__logo {
    margin-right: auto;
}
.header__address,
.header__email,
.header__logo,
.header__phone {
    flex: 0 0 auto;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
}
.header__address,
.header__email {
    margin-left: 20px;
}
.header__button-question {
    display: inline-block;
    order: 10;
    -webkit-box-ordinal-group: 11;
    -moz-box-ordinal-group: 11;
    -ms-flex-order: 10;
    -webkit-order: 10;
}
.header__button-question:hover::before {
    opacity: 0;
}
.nav {
    display: block;
    background-color: #6b380d;
    background-image: url("/assets/img/nav-bg.png");
    background-repeat: repeat-x;
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}
.nav__container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-align: center;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}
.footer {
    display: block;
    padding: 40px 0;
    background-color: #6b380d;
}
.footer__container {
    position: relative;
    max-width: 1250px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}
.footer__col {
    display: block;
}
.footer__col:not(:last-child) {
    margin-bottom: 30px;
}
.footer__title {
    display: block;
    margin: 0 0 17px;
    color: #fff;
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    border-bottom: 1px solid #795548;
    padding: 2px 0 8px;
}
.footer__menu {
    max-width: 360px;
}
.footer__address,
.footer__email,
.footer__phone {
    position: relative;
    display: block;
    padding-left: 25px;
    text-decoration: none;
    color: #fff;
}
.footer__address:not(:last-child),
.footer__email:not(:last-child),
.footer__phone:not(:last-child) {
    margin-bottom: 15px;
}
.footer__address .svg-icon,
.footer__email .svg-icon,
.footer__phone .svg-icon {
    position: absolute;
    top: 2px;
    left: -1px;
    display: inline-block;
    fill: #ff9d6a;
}
.footer__address,
.footer__copyright,
.footer__email,
.footer__phone {
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #dfc0a5;
}
.footer__email:hover,
.footer__phone:hover {
    text-decoration: none;
    color: #ff9d6a;
}
.footer__address,
.footer__copyright,
.footer__email {
    font-size: 15px;
    font-style: normal;
    line-height: 1.6;
}
.footer__copyright,
.footer__email {
    font-size: 15px;
    line-height: 20px;
}
.footer__copyright {
    display: block;
    margin: 0;
    color: #966e4d;
    font-size: 15px;
    line-height: 20px;
}
.footer__copyright:first-line {
    font-size: 15px;
}
@font-face {
    font-family: GothamPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.svg#GothamPro-Regular) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.eot?#iefix) format("embedded-opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: GothamPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.svg#GothamPro-Medium) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.eot?#iefix) format("embedded-opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: GothamPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.svg#GothamPro-Bold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.eot?#iefix) format("embedded-opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: GothamPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.svg#GothamPro-Black) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.eot?#iefix) format("embedded-opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: SourceSansPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.svg#SourceSansPro-Light) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.eot?#iefix) format("embedded-opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: SourceSansPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.svg#SourceSansPro-Regular) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.eot?#iefix) format("embedded-opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: SourceSansPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.svg#SourceSansPro-Semibold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.eot?#iefix) format("embedded-opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: SourceSansPro;
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.eot");
    src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.svg#SourceSansPro-Bold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.eot?#iefix) format("embedded-opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@media only screen and (min-width:768px) {
h1,
    h2 {
        margin: 0 0 40px;
        font-size: 50px;
    }
h2 {
        font-size: 36px;
        line-height: 1.22;
        padding-top: 0;
    }
h3 {
        font-size: 30px;
    }
h5 {
        font-size: 18px;
    }
.form--frame {
        padding: 30px 40px;
    }
.form__subtitle,
    .form__title {
        margin-bottom: 25px;
        font-size: 20px;
    }
.form__subtitle {
        margin-top: -20px;
        font-size: 18px;
    }
.form__row {
        margin-bottom: -30px;
    }
.form__col {
        margin-bottom: 30px;
    }
.form--2 .form__col,
    .form--3 .form__col {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
    }
.form--2 .form__col:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }
.logo--header {
        max-width: 200px;
    }
.contact {
        position: relative;
    }
.contact--phone {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
    }
.contact__button {
        width: 44px;
        height: 44px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        background: #f6faf4;
    }
.contact.expanded .contact__button {
        background-color: #5dc12e;
    }
.contact.expanded .contact__button .svg-icon {
        opacity: 1;
        fill: #fff;
    }
.contact--phone .contact__button,
    .contact--phone .contact__content {
        flex: 0 0 auto;
        background-color: transparent;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
    }
.contact--phone .contact__button {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        pointer-events: none;
    }
.contact--phone.expanded .contact__button {
        background-color: transparent;
    }
.contact--phone.expanded .contact__button .svg-icon {
        opacity: 1;
        fill: #5dc12e;
    }
.contact__content {
        top: 105%;
        right: 0;
        left: auto;
        padding: 12px 20px;
    }
.contact--phone .contact__content {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: inline-block !important;
        padding: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
.contact__address {
        min-width: 280px;
    }
.video__icon .svg-icon {
        width: 28px;
        height: 25px;
    }
.menu__items {
        padding: 20px 0;
    }
.menu__item a {
        padding: 18px 20px 18px 75px;
        font-size: 13px;
    }
.menu-footer__items {
        -webkit-columns: auto;
        -moz-columns: auto;
        columns: auto;
    }
.menu-footer--2 .menu-footer__items {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
.header__container {
        padding-right: 24px;
        padding-left: 24px;
        height: 90px;
    }
.header__address {
        margin-left: 20px;
    }
.header__email {
        margin-left: 10px;
    }
.header__button-question {
        display: inline-block;
        margin-left: 20px;
    }
.nav__container {
        padding-right: 24px;
        padding-left: 24px;
        height: 52px;
    }
.footer {
        padding: 60px 0;
    }
.footer__container {
        padding-right: 24px;
        padding-left: 24px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
    }
.footer__col:nth-child(1) {
        order: 5;
        flex: 0 0 50%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-box-ordinal-group: 6;
        -moz-box-ordinal-group: 6;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        -ms-flex-order: 5;
        -webkit-order: 5;
    }
.footer__col:nth-child(2),
    .footer__col:nth-child(3) {
        flex: 0 0 130px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 130px;
        -ms-flex: 0 0 130px;
    }
.footer__col:nth-child(3) {
        flex: 0 0 300px;
        -webkit-flex: 0 0 300px;
        -ms-flex: 0 0 300px;
    }
.footer__col:nth-child(4),
    .footer__col:nth-child(5) {
        flex: 0 0 260px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 260px;
        -ms-flex: 0 0 260px;
    }
.footer__col:nth-child(5) {
        order: 6;
        flex: 0 0 50%;
        margin-top: 10px;
        text-align: right;
        -webkit-box-ordinal-group: 7;
        -moz-box-ordinal-group: 7;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        -ms-flex-order: 6;
        -webkit-order: 6;
    }
}
@media only screen and (min-width:1250px) {
h1,
    h2 {
        margin: 0 0 40px;
    }
.form--2 .form__col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
    }
.form--2 .form__col:last-child {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
    }
.form--3 .form__col {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
    }
.contact {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
    }
.contact__button {
        flex: 0 0 auto;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        pointer-events: none;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
    }
.contact.expanded .contact__button,
    .contact__button,
    .contact__content {
        background-color: transparent;
    }
.contact.expanded .contact__button .svg-icon {
        opacity: 1;
        fill: #5dc12e;
    }
.contact__content {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: inline-block !important;
        flex: 0 1 auto;
        padding: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
    }
.contact__address {
        width: 230px;
        min-width: 100px;
        text-align: left;
    }
.video__icon .svg-icon {
        width: 36px;
        height: 32px;
    }
.menu__btn-menu {
        display: none;
    }
.menu__items {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row nowrap;
        padding: 0;
        background-color: transparent;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
    }
.menu__item a {
        height: 52px;
        padding: 17px 27px;
    }
.header__container {
        padding-right: 40px;
        padding-left: 40px;
        height: 110px;
    }
.header__phone {
        order: 4;
        margin-left: 40px;
        -webkit-box-ordinal-group: 5;
        -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
        -webkit-order: 4;
    }
.header__address {
        order: 2;
        margin-left: 0;
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        -webkit-order: 2;
    }
.header__email {
        order: 3;
        margin-left: 35px;
        -webkit-box-ordinal-group: 4;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
        -webkit-order: 3;
    }
.header__button-question {
        margin-left: 40px;
    }
.footer__container,
    .nav__container,
    .page__container {
        padding-right: 40px;
        padding-left: 40px;
    }
.footer__col:not(:last-child) {
        margin-bottom: 0;
    }
.footer__col:nth-child(1) {
        order: -1;
        flex: 0 0 220px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-box-ordinal-group: 0;
        -moz-box-ordinal-group: 0;
        -webkit-flex: 0 0 220px;
        -ms-flex: 0 0 220px;
        -ms-flex-order: -1;
        -webkit-order: -1;
    }
.footer__col:nth-child(2) {
        flex: 0 0 130px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 130px;
        -ms-flex: 0 0 130px;
    }
.footer__col:nth-child(3),
    .footer__col:nth-child(4) {
        flex: 0 0 340px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 340px;
        -ms-flex: 0 0 340px;
    }
.footer__col:nth-child(4) {
        flex: 0 0 260px;
        -webkit-flex: 0 0 260px;
        -ms-flex: 0 0 260px;
    }
.footer__col:nth-child(5) {
        position: absolute;
        bottom: -54px;
        left: 56px;
        margin: 0;
        text-align: left;
    }
}
@media only screen and (min-width:2500px) {
.logo--header {
        max-width: 220px;
    }
}
@media print {
a,
    a:visited {
        text-decoration: underline;
    }
h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
h2,
    h3 {
        page-break-after: avoid;
    }
}
.ml5 {
    margin-left: 5px;
}
.header__address,
.header__email,
.header__logo,
.header__phone {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
li {
    padding: 10px;
    line-height: 21px;
}
.autopark .menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__item {
    max-width: 464px;
    min-height: 317px;
    margin-top: 40px;
    margin-right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    border-radius: 10px;
}
.contact__item a {
    text-decoration: none;
    color: #292929;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.contact__title {
    padding: 30px 30px 0 50px;
    font-size: 26px;
    font-weight: 700;
}
.contact__info {
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 86px;
}
@media(max-width:1049px) {
.menu {
        margin-top: 0;
        display: inline-flex;
        flex-direction: column;
        align-items: stretch;
    }
}
@media(max-width:945px) {
.contact__item {
        margin-right: 0;
    }
.field__field input,
    .field__field textarea {
        padding: 16px;
        font-size: 16px;
    }
}
@media(max-width:802px) {
.menu {
        display: block;
        align-content: space-around;
        flex-wrap: wrap;
        align-items: stretch;
        text-align: center;
    }
.autopark .menu {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-end;
        margin: 0 22px 0 16px;
    }
}
@media(max-width:475px) {
.contact__title {
        padding-right: 20px;
        padding-left: 50px;
    }
.contact__item {
        max-width: 380px;
    }
.contact__info {
        padding-left: 50px;
    }
}
@media(max-width:408px) {
.contact__title {
        padding-left: 50px;
    }
.contact__info {
        margin-bottom: 35px;
    }
.contact__item {
        max-width: 280px;
    }
body,
    html {
        margin: 0;
        height: 100%;
        font-size: 16px;
    }
html {
        -webkit-text-size-adjust: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-width: 320px;
        -ms-overflow-style: scrollbar;
        -ms-text-size-adjust: 100%;
        line-height: 1.15;
    }
body {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        color: #2b2929;
        background-color: #fff;
        font-family: SourceSansPro,Arial,sans-serif;
        -webkit-font-smoothing: subpixel-antialiased !important;
        -ms-backface-visibility: hidden;
        line-height: 1.2;
    }
a {
        background-color: transparent;
    }
button,
    input {
        overflow: visible;
    }
body:after {
        display: table;
        clear: both;
        content: "";
    }
h1 {
        color: #2b2929;
        margin: 0 0 30px;
        font-size: 30px;
        line-height: 1.3;
    }
h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        word-break: break-word;
        font-family: SourceSansPro,Arial,sans-serif;
        font-weight: 700;
        overflow-wrap: break-word;
        font-size: 18px;
    }
h2 {
        font-size: 22px;
        color: #6b380d;
        line-height: 1.4;
        text-align: center;
    }
h3,
    h4,
    h5,
    h6 {
        margin: 0 0 1.5em;
        color: #2b2929;
        line-height: 1.2;
    }
h3 {
        font-size: 24px;
    }
h4 {
        font-size: 20px;
    }
h5 {
        font-size: 16px;
    }
h6 {
        font-size: 1em;
    }
p {
        margin: 0 0 20px;
        font-weight: 300;
        font-style: normal;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 18px;
        line-height: 1.55;
    }
a,
    button {
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
a,
    a:hover {
        text-decoration: none;
        color: inherit;
    }
a:hover {
        color: #5dc12e;
    }
button {
        cursor: pointer;
    }
img {
        display: inline-block;
        max-width: 100%;
        height: auto;
        border: 0;
    }
ol,
    ul {
        padding-left: 0;
        list-style-position: inside;
    }
.field__field input,
    .field__field select,
    .field__field textarea,
    table {
        width: 100%;
    }
.svg-icon {
        display: inline-block;
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
.svg-icon--arrow-left,
    .svg-icon--arrow-right {
        width: 2.5em;
        font-size: 1.25rem;
    }
.svg-icon--email {
        width: 1.142857142857143em;
        font-size: 0.875rem;
    }
.svg-icon--location {
        width: 0.736842105263158em;
        font-size: 1.1875rem;
    }
.svg-icon--phone,
    .svg-icon--search {
        width: 1em;
        font-size: 1.125rem;
    }
.svg-icon--triangle {
        width: 0.888888888888889em;
        font-size: 1.125rem;
    }
.svg-icon--user {
        width: 0.789473684210526em;
        font-size: 1.1875rem;
    }
button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }
.button,
    .button:hover {
        text-decoration: none;
        color: #fff;
    }
.button,
    .button::before {
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
.button {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        min-height: 44px;
        padding: 15px 30px 13px;
        cursor: pointer;
        text-align: center;
        text-transform: uppercase;
        border: none;
        background: -webkit-gradient(linear,left top,left bottom,from(#ff9c68),to(#d16537));
        background: -webkit-linear-gradient(top,#ff9c68 0,#d16537 100%);
        background: -moz- oldlinear-gradient(top,#ff9c68 0,#d16537 100%);
        background: -o-linear-gradient(top,#ff9c68 0,#d16537 100%);
        background: linear-gradient(180deg,#ff9c68 0,#d16537 100%);
        text-shadow: 0 1px 1px rgba(0,0,0,.1);
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 12px;
        font-weight: 700;
        line-height: 16px;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        position: relative;
        -webkit-box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
        -moz-box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
        box-shadow: 0 3px 8px rgba(245,145,94,.4),inset 0 2px 0 rgba(255,255,255,.29);
        background-color: #d16537;
    }
.button::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        content: "";
        pointer-events: none;
        opacity: 0;
        background: -webkit-gradient(linear,left top,left bottom,from(#ff9c68),to(#e77c4e));
        background: -webkit-linear-gradient(top,#ff9c68 0,#e77c4e 100%);
        background: -moz- oldlinear-gradient(top,#ff9c68 0,#e77c4e 100%);
        background: -o-linear-gradient(top,#ff9c68 0,#e77c4e 100%);
        background: linear-gradient(180deg,#ff9c68 0,#e77c4e 100%);
        background-color: #e77c4e;
        -webkit-box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
        -moz-box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
        box-shadow: 0 2px 8px rgba(245,145,94,.2),inset 0 2px 0 rgba(255,255,255,.29);
    }
.button:hover {
        border-color: #5dc12e;
        background-color: #5dc12e;
        margin-left: 15px;
        margin-right: 15px;
    }
.button:hover::before {
        opacity: 1;
    }
.button--small {
        min-height: 36px;
        padding: 11px 30px 9px;
        font-size: 11px;
    }
.button--big {
        min-height: 50px;
        padding: 18px 30px 16px;
        font-size: 16px;
    }
.button--frame-blue,
    .button--frame-red {
        color: #369;
        border-color: #369;
        background-color: transparent;
    }
.button--frame-blue:hover {
        color: #fff;
        border-color: #369;
        background-color: #369;
    }
.button--frame-red {
        color: #c33;
        border-color: #c33;
    }
.button--frame-red:hover {
        color: #fff;
        border-color: #c33;
        background-color: #c33;
    }
.button__caption,
    .button__svg-icon {
        position: relative;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
    }
.button__caption {
        z-index: 10;
        flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
    }
.button__svg-icon {
        top: -1px;
        display: inline-block;
        flex: 0 0 auto;
        margin-right: 12px;
        margin-left: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
    }
.button--icon-right .button__svg-icon {
        order: 2;
        margin-right: 0;
        margin-left: 12px;
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        -webkit-order: 2;
    }
.btn-menu {
        position: relative;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        flex-flow: row nowrap;
        align-items: center;
        width: 30px;
        height: 30px;
        min-height: 12px;
        padding: 0;
        cursor: pointer;
        border: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        background: 0 0;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
    }
.btn-menu::before {
        top: 50%;
        margin-top: -2px;
    }
.btn-menu:hover::before {
        background-color: #5dc12e;
    }
.btn-menu.active {
        visibility: visible;
    }
.btn-menu.active::before {
        opacity: 0;
    }
.btn-menu__caption,
    .btn-menu__icon {
        flex: 0 0 auto;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
    }
.btn-menu__caption {
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,.1);
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 13px;
        font-weight: 700;
        font-style: normal;
        line-height: 1;
    }
.btn-menu__icon {
        position: relative;
        margin-right: 12px;
    }
.btn-menu::before,
    .btn-menu__icon::after,
    .btn-menu__icon::before {
        position: absolute;
        left: 0;
        content: "";
    }
.btn-menu__icon::before {
        top: -5px;
        -webkit-transform-origin: left top;
        -moz-transform-origin: left top;
        -ms-transform-origin: left top;
        -o-transform-origin: left top;
        transform-origin: left top;
    }
.btn-menu__icon::after {
        top: 5px;
        -webkit-transition: all 70ms linear;
        -moz-transition: all 70ms linear;
        -o-transition: all 70ms linear;
        transition: all 70ms linear;
        -webkit-transform-origin: left bottom;
        -moz-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        -o-transform-origin: left bottom;
        transform-origin: left bottom;
    }
.btn-menu__icon,
    .btn-menu__icon::after,
    .btn-menu__icon::before {
        display: block;
        width: 18px;
        height: 2px;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
        background-color: #fff;
    }
.btn-menu.active .btn-menu__icon {
        background-color: transparent;
    }
.btn-menu.active .btn-menu__icon::before {
        top: -6px;
        left: 3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
.btn-menu.active .btn-menu__icon::after {
        top: 6px;
        left: 3px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
.field {
        position: relative;
        display: block;
        width: 100%;
    }
.field__label {
        display: block;
        margin-bottom: 10px;
        color: #2b2929;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
    }
.field__required {
        color: #c00;
    }
.field__helpers {
        display: block;
        margin-top: 5px;
    }
.field__hint {
        display: block;
        margin: 0;
        color: #999;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.4;
    }
.field__field {
        position: relative;
    }
.field__field input,
    .field__field textarea {
        display: block;
        padding: 15px 20px 14px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        color: #2b2929;
        border: 1px solid #409817;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        background-color: #fff;
        -webkit-box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
        -moz-box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
        box-shadow: inset 5px 5px 8px rgba(0,0,0,.1);
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
.field__field input:invalid,
    .field__field textarea:invalid {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
.field__field input:focus,
    .field__field input:hover,
    .field__field textarea:focus,
    .field__field textarea:hover {
        border-color: #ff9d6a;
        outline: 0;
    }
.field__field input::-webkit-input-placeholder,
    .field__field textarea::-webkit-input-placeholder {
        opacity: 1;
        color: #2b2929;
    }
.field__field input:-moz-placeholder,
    .field__field input::-moz-placeholder,
    .field__field textarea:-moz-placeholder,
    .field__field textarea::-moz-placeholder {
        opacity: 1;
        color: #2b2929;
    }
.field__field input:-ms-input-placeholder,
    .field__field textarea:-ms-input-placeholder {
        opacity: 1;
        color: #2b2929;
    }
.field__field input::-webkit-input-placeholde,
    .field__field textareainput::-webkit-input-placeholde {
        opacity: 1;
        color: #2b2929;
    }
.ios .field__field input,
    .ios .field__field textarea {
        font-size: 16px;
    }
.field--icon .field__field input,
    .field--icon .field__field textarea {
        padding-right: 40px;
    }
.field--error .field__field input,
    .field--error .field__field textarea {
        color: red;
        border-color: red;
    }
.field--error .field__field input::-webkit-input-placeholder,
    .field--error .field__field textarea::-webkit-input-placeholder {
        opacity: 1;
        color: red;
    }
.field--error .field__field input:-moz-placeholder,
    .field--error .field__field input::-moz-placeholder,
    .field--error .field__field textarea:-moz-placeholder,
    .field--error .field__field textarea::-moz-placeholder {
        opacity: 1;
        color: red;
    }
.field--error .field__field input:-ms-input-placeholder,
    .field--error .field__field textarea:-ms-input-placeholder {
        opacity: 1;
        color: red;
    }
.field--error .field__field input::-webkit-input-placeholde,
    .field--error .field__field textareainput::-webkit-input-placeholde {
        opacity: 1;
        color: red;
    }
.field__field input {
        height: 50px;
    }
.field__field textarea {
        height: 120px;
        resize: none;
    }
.field__icon {
        position: absolute;
        top: 25px;
        right: 27px;
        display: inline-block;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform: translate(50%,-50%);
        -moz-transform: translate(50%,-50%);
        -ms-transform: translate(50%,-50%);
        -o-transform: translate(50%,-50%);
        transform: translate(50%,-50%);
        fill: #ff9d6a;
    }
input:focus+.field__icon,
    input:hover+.field__icon {
        fill: #5dc12e;
    }
.field__error {
        display: block;
        margin: 5px 0 -5px;
        color: red;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.2;
    }
.error-style--popup .field__error,
    .error-style--popup-top .field__error {
        position: absolute;
        z-index: 100;
        left: 0;
        display: inline-block;
        max-width: 100%;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 12px;
    }
.error-style--popup .field__error {
        border: 1px solid #ddd;
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,.15);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,.15);
        box-shadow: 0 0 10px rgba(0,0,0,.15);
        font-weight: 300;
        line-height: 18px;
        top: 92%;
        padding: 8px 10px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #ffc;
    }
.error-style--popup .field__error::after,
    .error-style--popup .field__error::before {
        position: absolute;
        top: -7px;
        left: 10px;
        display: block;
        width: 14px;
        height: 7px;
        content: "";
        border-width: 0 7px 7px;
        border-style: solid;
        border-color: transparent transparent #ddd;
    }
.error-style--popup .field__error::after {
        top: -6px;
        border-width: 0 6px 6px;
        border-color: transparent transparent #fdfcd3;
    }
.error-style--popup-top .field__error {
        top: -36px;
        padding: 7px 10px;
        text-align: center;
        color: #fff;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: #fc5851;
    }
.error-style--popup-top .field__error::after {
        position: absolute;
        bottom: -8px;
        left: 50%;
        display: block;
        width: 16px;
        height: 8px;
        margin-left: -8px;
        content: "";
        border-width: 8px 8px 0;
        border-style: solid;
        border-color: #fc5851 transparent transparent;
    }
.field--type-checkbox,
    .field--type-radio {
        position: relative;
        display: inline-block;
        width: auto;
    }
.field--type-checkbox input,
    .field--type-radio input {
        display: none;
        margin: 0;
        padding: 0;
        opacity: 0;
    }
.field--type-radio .field__label {
        display: inline-block;
        min-height: 20px;
        margin: 0;
        padding: 0 0 0 32px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #2b2929;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        -webkit-touch-callout: none;
    }
.field--type-radio .field__label .field__check {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 20px;
        height: 20px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        border: 1px solid #d1d1d1;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background-color: #fff;
    }
.field--type-checkbox .field__label:hover .field__check,
    .field--type-radio .field__label:hover .field__check {
        border-color: #999;
    }
.field--type-radio input:checked+.field__label .field__check::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        margin-left: -5px;
        content: "";
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background-color: #09f;
    }
.field--type-checkbox .field__label {
        display: inline-block;
        min-height: 20px;
        margin: 0;
        padding: 0 0 0 30px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #2b2929;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        -webkit-touch-callout: none;
    }
.field--type-checkbox .field__label .field__check {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 20px;
        height: 20px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        border: 1px solid #d1d1d1;
    }
.field--type-checkbox input:checked+.field__label .field__check::after {
        position: absolute;
        top: 2px;
        left: 7px;
        display: block;
        width: 6px;
        height: 11px;
        content: "";
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        border-width: 2px;
        border-style: none solid solid none;
        border-color: #09f;
    }
.field--type-checkbox.field--error .field__label .field__check {
        border-color: #c99;
    }
.field--type-checkbox .field__error {
        padding-left: 30px;
    }
.form,
    .form--frame {
        display: block;
    }
.form--frame {
        padding: 20px;
        border: 10px solid rgba(0,0,0,.07);
        background-color: #4caf50;
    }
.form__subtitle,
    .form__title {
        display: block;
        margin: 0 0 20px;
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,.1);
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        line-height: 1.8;
    }
.form__title a {
        display: inline-block;
        text-decoration: none;
        color: #fff;
    }
.form__title a:hover {
        text-decoration: underline;
        color: #fff;
    }
.form__subtitle {
        margin: -15px 0 20px;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 16px;
        font-weight: 300;
    }
.form__submit {
        width: 100%;
    }
.form__row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
        margin: 0 -15px -10px;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
    }
.form__col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
        padding: 0 15px;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }
.form__col,
    .logo {
        display: block;
    }
.logo--header {
        max-width: 160px;
    }
.logo img {
        max-width: 100%;
        height: auto;
        border: none;
    }
.contact,
    .logo img {
        display: block;
    }
.contact__button {
        position: relative;
        display: block;
        width: 20px;
        height: 20px;
        padding: 0;
        border: none;
        background-color: transparent;
    }
.contact__button .svg-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        fill: #5dc12e;
    }
.contact.expanded .contact__button .svg-icon {
        opacity: 0.5;
    }
.contact__address,
    .contact__phone {
        display: block;
        margin: 0;
        text-align: center;
        color: #2b2929;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        line-height: 1.285;
    }
.contact__phone {
        margin: 6px 0;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
    }
.breadcrumbs__item a:hover,
    .contact__email,
    .contact__email:hover,
    .contact__phone:hover {
        text-decoration: none;
        color: #5dc12e;
    }
.contact__email {
        display: block;
        margin: 6px 0;
        text-align: center;
        color: #2b2929;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        line-height: 20px;
    }
.search__btn-search .svg-icon {
        position: relative;
        top: -2px;
        display: inline-block;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        opacity: 0.5;
        fill: #fff;
    }
.search__btn-search:hover .svg-icon {
        opacity: 1;
    }
.search__btn-submit .svg-icon {
        position: relative;
        top: -2px;
        display: inline-block;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        fill: #ff9d6a;
    }
.search__btn-submit:hover .svg-icon {
        fill: #5dc12e;
    }
.video__icon,
    .video__icon .svg-icon,
    .video__icon::after,
    .video__icon::before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
.video__icon .svg-icon {
        z-index: 5;
        display: inline-block;
        width: 19px;
        height: 17px;
        -webkit-transform: translate(-38%,-50%);
        -moz-transform: translate(-38%,-50%);
        -ms-transform: translate(-38%,-50%);
        -o-transform: translate(-38%,-50%);
        transform: translate(-38%,-50%);
        fill: #fbdf50;
    }
.menu {
        display: block;
    }
.menu__items {
        position: absolute;
        z-index: 200;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        margin: 0;
        padding: 15px 0;
        list-style: none;
        background-color: #60310a;
    }
.menu__item {
        flex: 0 1 auto;
        margin: 0;
        padding: 0;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
    }
.menu__item a {
        display: block;
        padding: 13px 15px;
        text-decoration: none;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,.1);
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 12px;
        font-weight: 700;
        font-style: normal;
        line-height: 18px;
    }
.menu__item a.current,
    .menu__item a:hover {
        text-decoration: underline;
        /*color: #ff9d6a;
        background-color: rgba(0,0,0,.3);*/
    }
.menu-footer,
    .menu__item {
        display: block;
    }
.menu-footer__items {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
.menu-footer__item {
        display: block;
        margin: 0 0 9px;
        padding: 0;
        color: #dfc0a5;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 15px;
        font-weight: 400;
        font-style: normal;
        line-height: 1.2;
    }
.menu-footer__item a {
        text-decoration: none;
        color: #dfc0a5;
    }
.menu-footer__item a:hover {
        text-decoration: none;
        color: #ff9d6a;
    }
.header {
        display: block;
    }
.header__container {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        max-width: 1250px;
        height: 70px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
    }
.header__logo {
        margin-right: auto;
    }
.header__address,
    .header__email,
    .header__logo,
    .header__phone {
        flex: 0 0 auto;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
    }
.header__address,
    .header__email {
        margin-left: 20px;
    }
.header__button-question {
        display: none;
        order: 10;
        -webkit-box-ordinal-group: 11;
        -moz-box-ordinal-group: 11;
        -ms-flex-order: 10;
        -webkit-order: 10;
    }
.nav {
        display: block;
        background-color: #6b380d;
        background-image: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/img/nav-bg.png");
        background-repeat: repeat-x;
        background-position: center center;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
.nav__container {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        max-width: 1250px;
        height: 40px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-align: center;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
    }
.footer {
        display: block;
        padding: 40px 0;
        background-color: #6b380d;
    }
.footer__container {
        position: relative;
        max-width: 1250px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
    }
.footer__col {
        display: block;
    }
.footer__col:not(:last-child) {
        margin-bottom: 30px;
    }
.footer__title {
        display: block;
        margin: 0 0 17px;
        color: #fff;
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 17px;
        font-weight: 700;
        font-style: normal;
        line-height: 1.2;
    }
.footer__menu {
        max-width: 360px;
    }
.footer__address,
    .footer__email,
    .footer__phone {
        position: relative;
        display: block;
        padding-left: 25px;
        text-decoration: none;
        color: #fff;
    }
.footer__address:not(:last-child),
    .footer__email:not(:last-child),
    .footer__phone:not(:last-child) {
        margin-bottom: 15px;
    }
.footer__address .svg-icon,
    .footer__email .svg-icon,
    .footer__phone .svg-icon {
        position: absolute;
        top: 2px;
        left: -1px;
        display: inline-block;
        fill: #ff9d6a;
    }
.footer__address,
    .footer__copyright,
    .footer__email,
    .footer__phone {
        font-family: SourceSansPro,Arial,sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 20px;
    }
.footer__email:hover,
    .footer__phone:hover {
        text-decoration: none;
        color: #ff9d6a;
    }
.footer__address,
    .footer__copyright,
    .footer__email {
        font-size: 12px;
        font-style: normal;
        line-height: 1.6;
    }
.footer__copyright,
    .footer__email {
        font-size: 13px;
        line-height: 20px;
    }
.footer__copyright {
        display: block;
        margin: 0;
        color: #966e4d;
        font-size: 12px;
        line-height: 22px;
    }
.footer__copyright:first-line {
        font-size: 15px;
    }
@font-face {
        font-family: GothamPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.svg#GothamPro-Regular) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Regular/GothamPro-Regular.eot?#iefix) format("embedded-opentype");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: GothamPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.svg#GothamPro-Medium) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Medium/GothamPro-Medium.eot?#iefix) format("embedded-opentype");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: GothamPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.svg#GothamPro-Bold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Bold/GothamPro-Bold.eot?#iefix) format("embedded-opentype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: GothamPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.svg#GothamPro-Black) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/GothamPro-Black/GothamPro-Black.eot?#iefix) format("embedded-opentype");
        font-weight: 900;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: SourceSansPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.svg#SourceSansPro-Light) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Light/SourceSansPro-Light.eot?#iefix) format("embedded-opentype");
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: SourceSansPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.svg#SourceSansPro-Regular) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Regular/SourceSansPro-Regular.eot?#iefix) format("embedded-opentype");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: SourceSansPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.svg#SourceSansPro-Semibold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Semibold/SourceSansPro-Semibold.eot?#iefix) format("embedded-opentype");
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }
@font-face {
        font-family: SourceSansPro;
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.eot");
        src: url("https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.woff2") format("woff2"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.woff) format("woff"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.ttf) format("truetype"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.svg#SourceSansPro-Bold) format("svg"),url(https://rosperevozki.ru/blog/wp-content/themes/astra-child/assets/fonts/SourceSansPro-Bold/SourceSansPro-Bold.eot?#iefix) format("embedded-opentype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
.footer__copyright {
        line-height: 22px;
    }
.ml5 {
        margin-left: 5px;
    }
.header__address,
    .header__email,
    .header__logo,
    .header__phone {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
li {
        padding: 10px;
        line-height: 21px;
    }
.autopark .menu {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: space-around;
    }
.contact__item {
        max-width: 464px;
        min-height: 317px;
        margin-top: 40px;
        margin-right: 20px;
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,.15);
        border-radius: 10px;
    }
.contact__item a {
        text-decoration: none;
        color: #292929;
    }
.contact__title {
        padding: 50px 201px 0 50px;
        font-size: 26px;
        font-weight: 700;
    }
.contact__info {
        padding-top: 40px;
        padding-left: 75px;
        padding-right: 16px;
    }
}
.logo.logo--footer.footer__logo {
    margin-top: -16px;
}
li {
    font-family: SourceSansPro,Arial,sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
}
p.footer__copyright br {
    display: none;
}
.footer__address p {
    color: #dfc0a5 !important;
}
.nav {
    position: relative;
}
.to-top {
    position: fixed;
    bottom: 10px;
    left: calc(50% - 1320px / 2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s opacity linear;
}
.to-top.visible {
    opacity: 1;
    visibility: visible;
}
.to-top:hover {
    cursor: pointer;
}
@media screen and (max-width:1320px) {
.to-top {
        left: 35px;
    }
}
.to-top__wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(180deg,#ff9c68 0,#d16537 100%);
    border-radius: 50%;
    transition: 0.3s background linear;
}
.to-top__icon {
    width: 25px;
    height: 20px;
    fill: #fff;
    transform: rotate(90deg);
}
@media (prefers-reduced-motion:no-preference) {
:root {
        scroll-behavior: smooth;
    }
}
/*styles for header*/
.page-header {
    width: 100%;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 200;
}
.header-nav {
    margin-right: 38px;
    margin-top: 2px;
}
.header-nav-btn {
    display: block;
    background: linear-gradient(180deg, #ff9c68 0, #d16537 100%);
    box-shadow: 0 3px 8px rgba(245, 145, 94, .4), inset 0 2px 0 rgba(255, 255, 255, .29);
    border: 0px;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    padding: 0px 0 0 6px;
}
.header-nav-btn:hover {
    opacity: 0.9;
}
.menu>.header-nav-btn.active {
    background: linear-gradient(180deg, #ff9c68 0, #d16537 100%);
}
.header-nav-btn span {
    width: 27px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0px 0px 2px 0px rgba(34, 60, 80, 0.2) inset;
    transition: all 0.3s ease;
}
.header-nav-btn span:before {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    top: -11px;
    box-shadow: 0px 0px 2px 0px rgba(34, 60, 80, 0.2) inset;
    transition: all 0.3s ease;
}
.header-nav-btn span:after {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    top: 11px;
    box-shadow: 0px 0px 2px 0px rgba(34, 60, 80, 0.2) inset;
    transition: all 0.3s ease;
}
.header-nav-btn.opened span {
    display: table-row-group;
}
.header-nav-btn.opened .btn-menu__icon::before {
    top: -10px;
    left: 6px;
    transform: rotate(45deg);
}
.header-nav-btn.opened .btn-menu__icon::after {
    width: 32px;
    top: 11px;
    left: 6px;
    transform: rotate(-45deg);
}
.header-nav-items {
    display: none;
    position: absolute;
    background: #fff;
    color: #2b2929;
    padding: 30px 50px 15px 65px;
    width: 500px;
    top: 100px;
}
.header-logo {
    margin-right: auto;
    max-width: 200px;
}
.header-short_nav {
    display: flex;
    width: 30%;
    justify-content: space-between;
    margin-right: 2%;
}
.header-short_nav .header-nav-item {
    display: inline-block;
    margin-top: 18px;
    font-size: 16px;
    font-weight: 700;
	text-transform: uppercase;
}
a.header-nav-item {
    margin-bottom: 15px;
}
.header-nav-items-left {
    display: inline-block;
    width: 45%;
    text-align: left;
}
.header-nav-items-right {
    display: inline-block;
    width: 40%;
    float: right;
    text-align: left;
}
.header-nav-item {
    display: block;
    color: #2b2929;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.header-nav-items-right>.header-nav-item:hover {
	text-decoration: none;
}
.header-nav-services {
    padding-left: 0px;
}
.header-nav-services li {
    line-height: 1.35;
}
.header-nav-services a {
    display: inline-block;
    color: #2b2929;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    height: auto;
    padding: 0;
    line-height: 1.7;
}
.header__button-question:hover {
    opacity: 0.9;
	color: #fff;
}
li:not(.ui-menu-item) {
    line-height: 1.35;
}
li {
    padding: 5px 10px;
}
p {
    line-height: 1.35;
}
@media (max-width: 1250px) {
.header-short_nav .header-nav-item {
        font-size: 15px;
    }
.header-short_nav {
        margin-right: 3%;
        width: 28%;
    }
.header-nav-items {
        top: 90px;
    }
}
@media (max-width: 1049px) {
.header-short_nav {
        display: none;
    }
}
@media (max-width: 767px) {
.header-nav-btn {
        border-radius: 3px;
        width: 33px;
        height: 33px;
        padding: 0px 0 0 5px;
    }
.header-nav-btn span {
        width: 19px;
        height: 3px;
        border-radius: 2px;
    }
.header-nav-btn span:before {
        width: 23px;
        height: 3px;
        border-radius: 2px;
        top: -8px;
    }
.header-nav-btn span:after {
        width: 16px;
        height: 3px;
        border-radius: 2px;
        top: 8px;
    }
.header-nav-btn.opened .btn-menu__icon::before {
        top: -7px;
        left: 4px;
    }
.header-nav-btn.opened .btn-menu__icon::after {
        width: 23px;
        top: 8px;
        left: 4px;
    }
.header-logo {
        max-width: 160px;
    }
.header__button-question {
        display: block;
        margin-left: 20px;
        min-height: 33px;
        padding: 9px 20px 8px;
		font-size: 11px;
    }
.contact__content {
		padding: 0px 5px;
	}
.contact__phone img {
		width: 19px;
		margin-left: 0px;
		margin-right: 5px;
	}
.header-nav-items {
        padding: 15px 5px 5px 5px;
        width: 390px;
        top: 70px;
    }
.header-nav-item {
        margin-bottom: 5px;
        font-size: 17px;
    }
a.header-nav-item {
        margin-bottom: 10px;
    }
.header-phone .contact__phone {
        margin-top: 6px;
        margin-left: 8px;
        font-size: 16px;
    }
.header-logo {
        max-width: 160px;
        padding: 0px 12px 0 15px;
    }
.contact__phone svg {
        margin-top: -5px;
    }
.header-question {
        display: block;
        margin-left: 20px;
        min-height: 33px;
        padding: 9px 20px 8px;
        white-space: nowrap;
    }
}
@media (max-width: 682px) {
.header-nav {
        margin-right: 15px;
    }
}
@media (max-width: 578px) {
.header-phone span {
        display: none  !important;
    }
}
@media (max-width: 420px) {
.header-nav-items {
        padding: 15px 5px 15px 5px;
        width: 100%;
    }
.header-nav-items-left {
        width: 75%;
    }
.header-nav-items-right {
        width: 75%;
        float: none;
    }
.header-logo {
        padding: 0px 1px 0 8px;
        min-width: 90px;
    }
.header-nav {
        margin-right: 8px;
    }
}