body {
    margin: 0;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

details, main {
    display: block
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    color: #000;
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none;
    display: block;
    max-width: 100%
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: ButtonText dotted 1px
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto;
    min-height: 88px
}

[type=checkbox], [type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

[hidden], template {
    display: none
}

@font-face {
    font-family: Gilroy;
    src: local("Gilroy Regular"), local("Gilroy-Regular"), url(../../fonts/Gilroy-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: local("Gilroy Bold"), local("Gilroy-Bold"), url(../../fonts/Gilroy-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: local("Gilroy Extra-Bold"), local("Gilroy-Extra-Bold"), url(../../fonts/Gilroy-ExtraBold.woff2) format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

.perf-no-animation * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important
}

html {
    -webkit-text-size-adjust: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    background: #f5f5f5;
    color: #000;
    letter-spacing: normal;
    scroll-padding-top: 92px;
    scroll-behavior: smooth;
    font-family: Gilroy, sans-serif
}

button:active, button:hover, input:active, input:focus, input:hover {
    outline: 0
}

h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
    padding: 0;
    line-height: 130%
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

ul {
    list-style-type: none
}

p {
    margin: 0
}

section {
    position: relative;
    padding: 30px 0
}

.container {
    margin: 0 auto;
    max-width: 1324px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px
}

.hidden {
    display: none
}

.burger {
    width: 24px;
    height: 15px;
    position: relative;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}

.burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.burger span:nth-child(1) {
    top: 0
}

.burger span:nth-child(2), .burger span:nth-child(3) {
    top: 6px
}

.burger span:nth-child(4) {
    top: 12px
}

.burger.open span:nth-child(1) {
    top: 6px;
    width: 0%;
    left: 50%
}

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

.burger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.burger.open span:nth-child(4) {
    top: 6px;
    width: 0%;
    left: 50%
}

.breadcrumb {
    background-color: transparent
}

.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    overflow-x: auto;
    white-space: nowrap
}

.breadcrumb li a:hover {
    text-decoration: underline
}

.breadcrumb li a.is-active {
    font-weight: 600
}

.breadcrumb li::after {
    content: " - ";
    display: inline-block;
    border-radius: 50%;
    position: relative;
    padding: 0 5px
}

.breadcrumb li:last-child::after {
    display: none
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 25px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    border-radius: 6px;
    -webkit-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    transition: .25s ease-in
}

.btn-red {
    background: #e53c10
}

.btn-red:hover {
    background: #ff5d33
}

.btn-red:active {
    background: #b8320f
}

.btn-ghost {
    border: 1px solid #fff;
    padding: 15px 25px;
    background: 0 0
}

.btn-ghost:hover {
    background: #fff;
    color: #000
}

.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 140%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none
}

.checkbox .checkbox__text {
    line-height: 140%;
    font-weight: 500
}

.checkbox .checkbox__elem {
    top: 0;
    position: relative;
    height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
    display: inline-block;
    margin-right: .625rem
}

.checkbox .checkbox__elem::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 4px;
    width: 10px;
    height: 5px;
    -webkit-transition: .25s cubic-bezier(.08, .82, .17, 1);
    -o-transition: .25s cubic-bezier(.08, .82, .17, 1);
    transition: .25s cubic-bezier(.08, .82, .17, 1);
    opacity: 0;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    background: 0 0
}

.checkbox input:disabled:checked ~ .checkbox__elem {
    background-color: #959595
}

.checkbox input:disabled ~ .checkbox__elem {
    background: #959595
}

.checkbox input:disabled ~ .checkbox__text {
    color: #000
}

.checkbox input:checked ~ .checkbox__elem {
    background-color: #e53c10;
    z-index: 1
}

.checkbox input:checked ~ .checkbox__elem:after {
    opacity: 1;
    border-radius: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 140%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0
}

.radio__desc {
    display: block;
    font-size: 12px;
    color: #959595
}

.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none
}

.radio__text {
    line-height: 140%
}

.radio__elem {
    top: 0;
    position: relative;
    height: 20px;
    width: 20px;
    min-width: 20px;
    border: 1px solid #ebebeb;
    display: inline-block;
    margin-right: .625rem;
    border-radius: 50%;
    background: #fff
}

.radio__elem:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border: solid #ebebeb;
    -webkit-transition: .25s cubic-bezier(.08, .82, .17, 1);
    -o-transition: .25s cubic-bezier(.08, .82, .17, 1);
    transition: .25s cubic-bezier(.08, .82, .17, 1);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 50%
}

.radio input:disabled ~ .radio__text {
    color: #959595
}

.radio input:disabled ~ .radio__elem {
    background-color: #959595
}

.radio input:checked ~ .radio__elem {
    background-color: #fff;
    border-color: #e53c10
}

.radio input:checked ~ .radio__elem:after {
    opacity: 1;
    background: #e53c10;
    border: none
}

input[type=submit] {
    border: none;
    cursor: pointer
}

input:not([type=checkbox]):not([type=radio]), textarea {
    resize: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    border: 2px solid #ebebeb;
    width: 100%;
    outline: 0;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    height: 44px
}

input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #7a7a7a
}

input:not([type=checkbox]):not([type=radio])::-moz-placeholder, textarea::-moz-placeholder {
    color: #7a7a7a
}

input:not([type=checkbox]):not([type=radio]):-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #7a7a7a
}

input:not([type=checkbox]):not([type=radio])::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #7a7a7a
}

input:not([type=checkbox]):not([type=radio])::placeholder, textarea::placeholder {
    color: #7a7a7a
}

input[type=date]::-webkit-calendar-picker-indicator, input[type=date]::-webkit-inner-spin-button {
    opacity: 0;
    -webkit-appearance: none;
    cursor: pointer
}

input[type=date] {
    background-repeat: no-repeat;
    background-size: 24px;
    background-position-y: center;
    background-position-x: calc(100% - 16px);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 4H5C3.89543 4 3 4.89543 3 6V20C3 21.1046 3.89543 22 5 22H19C20.1046 22 21 21.1046 21 20V6C21 4.89543 20.1046 4 19 4Z' stroke='%23E53C10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 2V6' stroke='%23E53C10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 2V6' stroke='%23E53C10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 10H21' stroke='%23E53C10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
}

.input, .select, .textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.input-icon__wrap, .textarea-icon__wrap {
    position: relative
}

.input-icon__wrap .icon, .textarea-icon__wrap .icon {
    position: absolute;
    top: 15px;
    left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px
}

.input-icon__wrap input:not([type=checkbox]):not([type=radio]), .input-icon__wrap textarea, .textarea-icon__wrap input:not([type=checkbox]):not([type=radio]), .textarea-icon__wrap textarea {
    width: 100%;
    padding: 15px 15px 15px 40px !important
}

.select-hidden {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none
}

.select .af-select {
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    width: 100% !important;
    position: relative
}

.select .af-select.disabled, .select .af-select.disabled select {
    pointer-events: none
}

.select .af-select.disabled .select-styled {
    pointer-events: none;
    opacity: .7
}

.select select, .select-styled {
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    border: 2px solid #ebebeb;
    width: 100%;
    outline: 0;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    background-color: #fff;
    height: 44px
}

.select-styled {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.select-styled-with-icon {
    padding: 15px 15px 15px 40px;
    position: relative
}

.select-styled-with-icon .icon {
    position: absolute;
    top: 15px;
    left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px
}

.select-styled-with-icon .icon svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.select-styled span {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000
}

.select-styled.active::after {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1)
}

.select-styled::after {
    content: "";
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L12 14L16 10' stroke='%23E53C10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -o-transition: transform .3s;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px
}

.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: auto;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, .25);
    box-shadow: 0 0 9px rgba(0, 0, 0, .25);
    color: #000;
    width: 100%
}

.select-options.active {
    display: block
}

.select-options li {
    margin: 0;
    padding: 10px 16px;
    -webkit-transition: .15s ease-in;
    -o-transition: .15s ease-in;
    transition: .15s ease-in;
    font-size: 16px;
    line-height: 24px;
    height: 44px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000;
    text-align: left
}

.select-options li.active, .select-options li:hover {
    background: #e53c10;
    color: #fff
}

.select-options li[rel=hide] {
    display: none
}

.form__field {
    margin-bottom: 16px
}

.form__field span.label {
    display: block;
    margin-bottom: 4px
}

.form__submit {
    padding-top: 8px
}

.form__submit .btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
    line-height: 142.85714%
}

.mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 300px;
    background: #eee;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    overflow-y: scroll;
    z-index: 1001
}

.mobileMenu.opened {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mobileMenu-header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 69px
}

.mobileMenu-nav__ul li {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 15px
}

.section-h1, .section-h2, h1, h2 {
    font-weight: 900;
    font-size: 32px;
    line-height: 137.5%;
    margin: 0 0 20px;
    width: 100%
}

.section-h3, h3 {
    font-weight: 900;
    font-size: 24px;
    line-height: 150%;
    margin: 0 0 20px;
    width: 100%
}

.popup__wrp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1001;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    overflow-y: auto;
    overscroll-behavior-y: contain
}

.popup__wrp:target {
    opacity: 1;
    pointer-events: all
}

.popup__wrp .popup {
    max-width: 600px;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 48px 20px 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: auto 0 0
}

.popup__wrp .popup-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #ebebeb;
    border-radius: 0 0 0 6px
}

.popup__wrp .popup-close a {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup__wrp .popup .section-h2 {
    margin-bottom: 8px
}

.popup__wrp .popup-content__desc {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 150%
}

.popup__wrp .popup .select select, .popup__wrp .popup .select-styled, .popup__wrp .popup button, .popup__wrp .popup input:not([type=checkbox]):not([type=radio]) {
    height: 56px;
    font-size: 16px;
    line-height: 150%
}

.popup__wrp .popup .form__agreement {
    margin-top: 32px
}

.popup__wrp .popup .form__agreement a {
    color: #e53c10
}

.popup__wrp .popup.popup-data {
    max-width: 808px
}

.popup__wrp .popup.popup-data .popup-content__desc {
    max-height: 504px;
    overflow-y: scroll
}

.popup__wrp .popup.popup-data .popup-content__desc::-webkit-scrollbar {
    width: 6px
}

.popup__wrp .popup.popup-data .popup-content__desc::-webkit-scrollbar-track {
    background: #fff
}

.popup__wrp .popup.popup-data .popup-content__desc::-webkit-scrollbar-thumb {
    background: #ebebeb;
    border-radius: 3px
}

.popup__wrp .popup.popup-data .back-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.popup__wrp .popup.popup-data .back-btn span {
    margin-left: 8px;
    color: #e53c10;
    font-size: 16px;
    line-height: 150%;
    font-weight: 600
}

.popup__wrp .popup.beton-callback .form__field.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup__wrp .popup.beton-callback .form__field.flex span.label {
    width: 100%
}

.popup__wrp .popup.beton-callback .address-store .address {
    font-size: 16px;
    line-height: 150%;
    color: #e53c10
}

.popup__wrp .popup.beton-callback .form__radio {
    padding-right: 24px
}

.table--responsive [data-hidden] {
    display: none
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: #fff;
    height: 92px;
    width: 100%;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    padding: 16px 0
}

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

.header-logo {
    width: 100px;
    height: 60px;
    margin-right: auto
}

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

.header-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.header-info__item.desktop-hidden {
    display: none
}

.header-info__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 142.85714%;
    margin-bottom: 4px
}

.header-info__value {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #e53c10
}

.header-feedback, .header-info__caption {
    display: none
}

footer {
    width: 100%;
    margin-top: auto;
    background: #fff;
    overflow: hidden
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer-company {
    width: 100%;
    background: #fff;
    padding: 28px 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-company__logo {
    margin-bottom: 24px
}

.footer-company__name {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 4px
}

.footer-company__desc {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 24px
}

.footer-company__copy {
    display: none
}

.footer-info {
    color: #fff;
    background: #27373d;
    margin: 0 -20px;
    padding: 28px 20px;
    width: calc(100% + 40px)
}

.footer-info__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer-info__item {
    margin: 12px 0
}

.footer-info__item .title {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700
}

.footer-info__item .title svg {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.footer-info__item .title span {
    margin-left: 12px
}

.footer-info__item .value {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 150%;
    color: #fff
}

.footer-info__item .link {
    font-size: 16px;
    line-height: 150%;
    color: #ff5d33;
    font-weight: 600
}

.footer-map {
    padding-top: 400px;
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%
}

.footer-map__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%
}

.scroll-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: fixed;
    bottom: 24px;
    right: 24px;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    background: #fff;
    cursor: pointer;
    z-index: 2;
}

.scroll-top.is-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, .25);
    box-shadow: 0 0 9px rgba(0, 0, 0, .25)
}

.edit-content h2 {
    margin-bottom: 8px
}

.edit-content p {
    margin: 19px 0;
    font-size: 15px;
    line-height: 180%;
    color: #1f1f1f
}

.edit-content a {
    color: #448aff;
    font-size: 15px;
    font-weight: 600;
    line-height: 180%
}

.edit-content bold {
    font-weight: 700 !important
}

.edit-content ol {
    list-style: none;
    padding: 0;
    counter-reset: item
}

.edit-content ol li {
    padding-left: 23px;
    position: relative;
    counter-increment: item;
    font-size: 15px;
    line-height: 180%;
    color: #1f1f1f
}

.edit-content ol li p {
    margin: 5px 0
}

.edit-content ol li::before {
    content: counter(item, decimal-leading-zero) ".";
    position: absolute;
    top: .15em;
    left: 0;
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 180%;
    color: #000
}

.edit-content ul {
    padding: 17px 0
}

.edit-content ul li {
    padding-left: 23px;
    position: relative;
    font-size: 15px;
    line-height: 180%;
    color: #1f1f1f
}

.edit-content ul li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 50%
}

.edit-content .table {
    overflow-x: auto;
    margin: 35px 0 0
}

.edit-content table {
    width: 100%;
    border-collapse: collapse
}

.edit-content table tr.head {
    background: #eef0fc;
    font-size: 14px;
    line-height: 180%
}

.edit-content table tr.head th {
    color: #1f1f1f;
    padding: 13px 20px
}

.edit-content table tr td, .edit-content table tr th {
    padding: 18px 20px;
    border: 1px solid #b5b5b5;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400
}

.edit-content table tr th:first-child {
    text-align: left
}

.edit-content table tr p {
    margin: 0;
    font-size: 14px;
    line-height: 150%
}

@-webkit-keyframes splide-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes splide-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.splide--draggable > .splide__slider > .splide__track, .splide--draggable > .splide__track {
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.splide--fade > .splide__slider > .splide__track > .splide__list, .splide--fade > .splide__track > .splide__list {
    display: block
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--fade > .splide__track > .splide__list > .splide__slide {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 0
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
    opacity: 1;
    position: relative;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide--ttb.is-active > .splide__slider > .splide__track > .splide__list, .splide--ttb.is-active > .splide__track > .splide__list {
    display: block
}

.splide__container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.splide__list {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide__progress__bar {
    width: 0
}

.splide {
    outline: 0;
    position: relative;
    visibility: hidden
}

.splide.is-initialized, .splide.is-rendered {
    visibility: visible
}

.splide__slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    outline: 0;
    position: relative
}

.splide__slide img {
    vertical-align: bottom
}

.splide__slider {
    position: relative
}

.splide__spinner {
    -webkit-animation: 1s linear infinite splide-loading;
    animation: 1s linear infinite splide-loading;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.simplepicker-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: #4c4c4c7d;
    width: 100vw;
    height: 100vh;
    display: none
}

.simplepicker-wrapper.active {
    display: block
}

.simpilepicker-date-picker {
    width: 326px;
    cursor: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    background-color: #fff;
    margin: 2% auto;
    -webkit-box-shadow: 1px 2px 4px .5px rgba(0, 0, 0, .22), 1px 2px 4px .5px transparent;
    box-shadow: 1px 2px 4px .5px rgba(0, 0, 0, .22), 1px 2px 4px .5px transparent
}

.simplepicker-day-header {
    color: #fff;
    background-color: #016565;
    text-align: center;
    padding: 4px 0
}

.simplepicker-date-section {
    text-align: center;
    background-color: #078e8e;
    color: #fff
}

.simplepicker-date-section .simplepicker-month-and-year {
    font-size: 22px;
    padding: 14px 0 7px;
    font-weight: 200
}

.simplepicker-date-section .simplepicker-date {
    font-size: 35px;
    padding: 2px;
    margin-bottom: 12px
}

.simplepicker-select-pane {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.simplepicker-select-pane .simplepicker-time, .simplepicker-selected-date {
    text-align: center;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2
}

.simplepicker-icon, .simplepicker-selected-date, .simplepicker-time {
    border: none;
    background: 0 0;
    padding: 2px;
    margin: 4px 6px;
    width: 25px;
    height: 25px;
    opacity: .5
}

.simplepicker-selected-date, .simplepicker-time {
    opacity: 1
}

.simplepicker-month-switcher {
    margin-top: 5px
}

.simplepicker-icon:hover {
    opacity: .8
}

.simplepicker-icon.active, .simplepicker-icon:active {
    opacity: 1
}

.simplepicker-icon:focus {
    outline: 0
}

.simplepicker-icon-next {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1hcnJvdy1yaWdodCI+PGxpbmUgeDE9IjUiIHkxPSIxMiIgeDI9IjE5IiB5Mj0iMTIiPjwvbGluZT48cG9seWxpbmUgcG9pbnRzPSIxMiA1IDE5IDEyIDEyIDE5Ij48L3BvbHlsaW5lPjwvc3ZnPg==)
}

.simplepicker-icon-previous {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1hcnJvdy1sZWZ0Ij48bGluZSB4MT0iMTkiIHkxPSIxMiIgeDI9IjUiIHkyPSIxMiI+PC9saW5lPjxwb2x5bGluZSBwb2ludHM9IjEyIDE5IDUgMTIgMTIgNSI+PC9wb2x5bGluZT48L3N2Zz4=)
}

.simplepicker-icon-calender {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jYWxlbmRhciI+PHJlY3QgeD0iMyIgeT0iNCIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiByeD0iMiIgcnk9IjIiPjwvcmVjdD48bGluZSB4MT0iMTYiIHkxPSIyIiB4Mj0iMTYiIHkyPSI2Ij48L2xpbmU+PGxpbmUgeDE9IjgiIHkxPSIyIiB4Mj0iOCIgeTI9IjYiPjwvbGluZT48bGluZSB4MT0iMyIgeTE9IjEwIiB4Mj0iMjEiIHkyPSIxMCI+PC9saW5lPjwvc3ZnPg==)
}

.simplepicker-icon-time {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jbG9jayI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiPjwvY2lyY2xlPjxwb2x5bGluZSBwb2ludHM9IjEyIDYgMTIgMTIgMTYgMTQiPjwvcG9seWxpbmU+PC9zdmc+)
}

.simplepicker-bottom-part {
    padding-top: 6px;
    padding-bottom: 12px;
    padding-left: 48%
}

.simplepicker-calender table {
    width: 100%;
    font-size: 13px
}

.simplepicker-calender thead th {
    font-weight: 400;
    font-size: 15px;
    padding-bottom: 6px;
    width: 14.28%;
    height: 30px;
    text-align: center
}

.simplepicker-calender tbody td {
    position: relative;
    text-align: center;
    vertical-align: middle;
    padding: 12px;
    z-index: 1
}

.simplepicker-calender tbody td:after {
    content: " ";
    visibility: hidden;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .05)
}

.simplepicker-calender tbody td:hover:after {
    visibility: visible
}

.simplepicker-calender tbody td.active, .simplepicker-calender tbody td:active {
    color: #fff
}

.simplepicker-calender tbody .active:after, .simplepicker-calender tbody td:active:after {
    visibility: visible;
    background-color: teal;
    z-index: -1
}

.simplepicker-calender tbody td[data-empty] {
    pointer-events: none
}

.simplepicker-time-section {
    display: none;
    height: 120px
}

.simplepicker-time-section input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 120px;
    height: 32px;
    max-width: 120px;
    max-height: 32px;
    padding: 4px 3px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: block;
    margin: 25% auto
}

.simplepicker-time-section input:focus {
    outline: 0;
    border-bottom-color: teal
}

.simplepicker-picker-section {
    width: 100%;
    height: auto
}

.simplepicker-btn {
    border: 1px solid #016565;
    background: 0 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 7px 14px;
    margin: 0 5px;
    color: #016565;
    font-size: 13px
}

.simplepicker-btn:active, .simplepicker-btn:hover {
    color: #fff;
    background-color: #016565
}

.simplepicker-fade {
    color: rgba(224, 224, 224, .95)
}

.simplepicker-btn, .simplepicker-icon, .simplepicker-wrapper {
    cursor: pointer
}

.banner-block {
    padding: 0;
    background: #27373d
}

.banner-block .section-h1 {
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff
}

.banner-block__text {
    max-width: 808px
}

.banner-block__image {
    display: none
}

.banner-block__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -12px
}

.banner-block__btns .btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 330px;
    flex: 1 1 330px;
    margin: 8px 12px
}

.banner-block .container {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px
}

.advantages-block {
    padding-top: 0;
    padding-bottom: 40px
}

.advantages-block .container {
    background: #fff
}

.advantages-block__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.advantages-block__item {
    width: 100%;
    position: relative;
    padding: 24px 0 24px 80px;
    min-height: 112px
}

.advantages-block__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background: #ebebeb
}

.advantages-block__icon {
    position: absolute;
    top: 24px;
    left: 0
}

.advantages-block__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%
}

.advantages-block__caption {
    font-size: 14px;
    line-height: 142.85714%
}

.price-block {
    padding-top: 0;
    padding-bottom: 40px
}

.price-block .container {
    background: #fff;
    padding-top: 28px;
    padding-bottom: 24px
}

.price-block__table .link, .price-block__table td.name {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #e53c10
}

.price-block__table--nav {
    display: none
}

.price-block__btn {
    margin: 0 -20px;
    border-radius: 0;
    padding: 18px 20px
}

.price-block__btn span {
    font-size: 14px;
    line-height: 142.85714%;
    margin-left: 11px
}

.price-block__caption {
    padding-top: 20px
}

.price-block__caption .title {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%
}

.order-block {
    padding-top: 20px;
}

@media screen and (min-width: 768px) {
    .order-block {
        padding-top: 36px;
    }
}

.order-block .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%
}

.order-block .text a {
    font-weight: 600;
    color: #e53c10;
    transition: .3s ease;
}

.order-block .text a:hover {
    color: #ff5d33;
}

.price-block__caption .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%
}

.quiz-form {
    padding-top: 0;
    padding-bottom: 40px
}

.quiz-form > .container {
    padding: 0 !important
}

.quiz-block .container {
    padding-top: 28px;
    padding-bottom: 28px;
    background: #fff
}

.quiz-block__caption {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px
}

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

.quiz-block__nav .step {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #ebebeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    font-weight: 700
}

.quiz-block__nav .step.is-active {
    background: #e53c10;
    color: #fff
}

.quiz-block__nav .step.is-active + .divider {
    background-image: url("data:image/svg+xml,%3Csvg width='149' height='12' viewBox='0 0 149 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M149 6L139 0.226497V11.7735L149 6ZM0 7H140V5H0V7Z' fill='%23E53C10'/%3E%3C/svg%3E%0A")
}

.quiz-block__nav .divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-size: cover;
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    height: 12px;
    width: 100%;
    margin: 0 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='150' height='12' viewBox='0 0 150 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M150 6L140 0.226497V11.7735L150 6ZM0 7H141V5H0V7Z' fill='%23EBEBEB'/%3E%3C/svg%3E%0A")
}

.quiz-block__steps {
    margin-top: 28px
}

.quiz-block__step {
    overflow: hidden;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    opacity: 0;
    display: none
}

.quiz-block__step.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 1
}

.quiz-block__step .options {
    padding-bottom: 12px
}

.quiz-block__step .options-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    border: 2px solid #ebebeb;
    border-radius: 6px;
    margin-bottom: 12px;
    position: relative
}

.quiz-block__step .options-option__image {
    width: 64px;
    height: 64px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 16px;
    position: relative;
    z-index: 1;
    pointer-events: none
}

.quiz-block__step .options-option__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.quiz-block__step .options-option__title {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    pointer-events: none
}

.quiz-block__step .options-option__bg {
    opacity: 0;
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    z-index: 0;
    border-radius: 6px;
    pointer-events: none
}

.quiz-block__step .options-option input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    height: 100%
}

.quiz-block__step .options-option input:checked ~ .options-option__title {
    color: #fff
}

.quiz-block__step .options-option input:checked ~ .options-option__bg {
    opacity: 1;
    background: #e53c10
}

.quiz-block__step .amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 28px
}

.quiz-block__step .amount-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px
}

.quiz-block__step .amount-input .input {
    width: 120px;
    margin: 0 12px
}

.quiz-block__step .amount-input__add, .quiz-block__step .amount-input__remove {
    width: 44px;
    height: 44px;
    cursor: pointer
}

.quiz-block__step .amount-desc {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px
}

.quiz-block__step .amount-dimensions {
    margin-bottom: 16px
}

.quiz-block__step .need {
    margin-bottom: 28px
}

.quiz-block__step .need .need-desc {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px
}

.quiz-block__step .need .need-image {
    margin-bottom: 24px;
    max-width: 360px
}

.quiz-block__step .need .need-image img {
    width: 100%;
    height: auto
}

.quiz-block__step .need .need-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -12px
}

.quiz-block__step .need .need-options .radio {
    margin: 0 12px
}

.quiz-block__step .info {
    padding-bottom: 8px
}

.quiz-block__step .info-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 28px
}

.quiz-block__step .info-options .checkbox {
    width: calc(50% - 10px)
}

.quiz-block__step .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.quiz-block__step .btns .btn {
    padding: 12px 28px
}

.quiz-block__step .btns-next {
    margin-left: auto
}

.calculate-block {
    color: #fff
}

.calculate-block .container {
    background: #27373d;
    padding: 24px 20px
}

.calculate-block__manager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px
}

.calculate-block__manager .image {
    border-radius: 6px;
    overflow: hidden;
    width: 64px;
    height: 64px;
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.calculate-block__manager .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.calculate-block__manager .person-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%
}

.calculate-block__manager .person-job {
    font-size: 14px;
    line-height: 142.85714%
}

.calculate-block__form {
    max-width: 344px;
    width: 100%
}

.calculate-block__info {
    padding: 24px 20px;
    margin: 24px -20px 0;
    border-top: 1px solid #3b535c;
    font-size: 16px;
    line-height: 150%
}

.calculate-block__info a {
    font-size: 24px;
    line-height: 36px;
    font-weight: 900;
    color: #fff;
    display: block;
    padding: 8px 0
}

.how-block {
    padding-top: 0;
    padding-bottom: 40px
}

.how-block a.how-block__title {
    color: #e53c10
}

.how-block .container {
    background: #fff;
    padding-top: 28px;
    padding-bottom: 28px
}

.how-block__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.how-block__item {
    width: 100%;
    padding: 26px 0 26px 100px;
    position: relative;
    min-height: 80px
}

.how-block__item:last-child {
    padding-bottom: 0
}

.how-block__item:last-child::after {
    display: none
}

.how-block__item::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='35' viewBox='0 0 16 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0.226497L2.2265 6L8 11.7735L13.7735 6L8 0.226497ZM7.29289 34.7071C7.68342 35.0976 8.31658 35.0976 8.70711 34.7071L15.0711 28.3431C15.4616 27.9526 15.4616 27.3195 15.0711 26.9289C14.6805 26.5384 14.0474 26.5384 13.6569 26.9289L8 32.5858L2.34315 26.9289C1.95262 26.5384 1.31946 26.5384 0.928932 26.9289C0.538408 27.3195 0.538408 27.9526 0.928932 28.3431L7.29289 34.7071ZM7 6L7 34H9L9 6H7Z' fill='%23FF5D33'/%3E%3C/svg%3E%0A")
}

.how-block__icon {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.how-block__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #000;
    margin-bottom: 4px
}

.how-block__text {
    font-size: 16px;
    line-height: 150%
}

.company-block {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 40px
}

.company-block .container {
    padding-top: 28px;
    padding-bottom: 28px;
    background: #fff
}

.company-block__text {
    font-size: 16px;
    line-height: 150%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 96px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s
}

.company-block__text.is-active {
    max-height: 10000px
}

.company-block__readmore {
    margin-top: 24px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    color: #e53c10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.company-block__readmore.is-active svg {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1)
}

.company-block__readmore.is-active span.show {
    display: none
}

.company-block__readmore.is-active span.hide {
    display: block
}

.company-block__readmore span {
    margin-right: 12px
}

.company-block__readmore span.hide {
    display: none
}

.company-block__gallery {
    margin-top: 28px
}

.company-block__gallery .slider {
    overflow: visible;
    width: 70.73171%
}

.company-block__gallery .slider .splide__arrows {
    display: none
}

.company-block__gallery .slider a[data-fslightbox] {
    display: block;
    position: relative
}

.company-block__gallery .slider a[data-fslightbox]:hover::after, .company-block__gallery .slider a[data-fslightbox]:hover::before {
    opacity: 1
}

.company-block__gallery .slider a[data-fslightbox]::before {
    -webkit-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    transition: .25s ease-in;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .3)), to(rgba(0, 0, 0, .3)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
    background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
    opacity: 0
}

.company-block__gallery .slider a[data-fslightbox]::after {
    -webkit-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    transition: .25s ease-in;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
    background-color: #e53c10;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8333 22.1667C17.988 22.1667 22.1667 17.988 22.1667 12.8333C22.1667 7.67868 17.988 3.5 12.8333 3.5C7.67868 3.5 3.5 7.67868 3.5 12.8333C3.5 17.988 7.67868 22.1667 12.8333 22.1667Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.5 24.5L19.425 19.425' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.8334 9.33325V16.3333' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.33337 12.8333H16.3334' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
}

.company-block__gallery .slider .splide__track {
    overflow: visible
}

.company-block__gallery .slider .splide__slide img {
    width: 100%;
    height: auto
}

.company-block__gallery .caption {
    margin-top: 20px
}

.company-block__gallery .caption-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 4px
}

.company-block__gallery .caption-desc {
    font-size: 14px;
    line-height: 142.85714%
}

@media screen and (min-width: 360px) {
    .header-logo {
        width: 132px
    }

    .header-info__value {
        font-size: 20px;
        line-height: 28px
    }
}

@media screen and (min-width: 376px) {
    .edit-content a, .edit-content p {
        font-size: 16px
    }
}

@media screen and (min-width: 480px) {
    .container {
        padding-left: 25px;
        padding-right: 25px
    }

    .footer-info {
        width: calc(100% + 50px);
        margin: 0 -25px
    }

    .banner-block .container {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .price-block__table {
        margin: 0 -25px !important
    }

    .price-block__btn {
        margin: 0 -25px
    }

    .calculate-block .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .calculate-block .section-h3 {
        text-align: center;
        margin-bottom: 24px
    }

    .calculate-block__info, .how-block .section-h2 {
        text-align: center
    }

    .how-block__item {
        padding: 26px 0 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .how-block__icon {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-bottom: 20px
    }

    .company-block__gallery .slider {
        width: 100%
    }
}

@media screen and (min-width: 481px) {
    .popup__wrp {
        padding: 20px
    }

    .popup__wrp .popup {
        margin: auto;
        padding: 48px 40px 40px
    }
}

@media screen and (min-width: 577px) {
    .edit-content ol li {
        padding-left: 45px
    }

    .edit-content ul li {
        padding-left: 46px
    }
}

@media screen and (min-width: 640px) {
    .section-h1, h1 {
        font-size: 36px
    }

    .section-h2, h2 {
        font-size: 34px
    }

    .section-h3, h3 {
        font-size: 26px
    }

    .header-logo {
        margin-right: 36px
    }

    .header-feedback {
        margin-left: auto;
        display: block
    }

    .header-feedback .btn {
        font-size: 14px;
        line-height: 20px;
        padding: 12px 28px
    }

    .banner-block .container {
        padding-top: 64px;
        padding-bottom: 64px
    }

    .quiz-block__step .options {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -6px
    }

    .quiz-block__step .options-option {
        width: calc(33.33% - 12px);
        margin: 6px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .quiz-block__step .options-option__image {
        margin: 0 0 8px;
        height: 80px;
        width: 100%
    }

    .quiz-block__step .options-option__title {
        margin: auto
    }
}

@media screen and (min-width: 768px) {
    .section-h1, h1 {
        font-size: 42px
    }

    .section-h2, h2 {
        font-size: 36px
    }

    .section-h3, h3 {
        font-size: 28px
    }

    .banner-block .container {
        padding-top: 72px;
        padding-bottom: 72px
    }

    .price-block .container {
        padding-top: 36px;
        padding-bottom: 36px
    }

    .price-block .section-h2 {
        margin-bottom: 36px
    }

    .price-block__table table {
        width: 100%;
        border-spacing: 0
    }

    .price-block__table thead tr:last-child th {
        font-weight: 400
    }

    .price-block__table th {
        padding: 12px;
        border: 1px solid #3b535c
    }

    .price-block__table td {
        border: 1px solid #ebebeb;
        padding: 20px;
        text-align: center
    }

    .price-block__table td.name .link {
        display: none
    }

    .price-block__table thead {
        background: #27373d
    }

    .price-block__table thead th {
        color: #fff
    }

    .price-block__caption {
        padding-top: 36px
    }

    .price-block__btn {
        padding: 28px
    }

    .quiz-block .container {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .quiz-block .need .need-desc {
        margin-bottom: 24px
    }

    .quiz-block .need .need-image {
        margin-bottom: 32px
    }

    .quiz-block .info-options .checkbox {
        width: calc(25% - 10px)
    }

    .how-block .container {
        padding-top: 48px;
        padding-bottom: 48px;
        overflow: hidden
    }

    .company-block .container {
        padding-top: 48px;
        padding-bottom: 48px
    }
}

@media screen and (min-width: 830px) {
    .footer {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .footer-company {
        width: 33.66013%;
        margin-right: auto;
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 48px 0
    }

    .footer-company > * {
        text-align: left
    }

    .footer-company__copy {
        margin-top: auto;
        padding-top: 24px;
        display: block;
        font-size: 16px;
        line-height: 150%
    }

    .footer-info {
        width: 66.33987%;
        margin: 0;
        position: relative;
        z-index: 1;
        padding: 48px
    }

    .footer-info .section-h2 {
        margin-bottom: 32px
    }

    .footer-info::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100vw;
        background: #27373d;
        z-index: -1
    }

    .advantages-block__items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .advantages-block__item {
        width: 50%;
        border: none;
        text-align: center;
        padding-left: 0
    }

    .advantages-block__item::after {
        display: none
    }

    .advantages-block__icon {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .how-block .section-h2 {
        margin-bottom: 40px;
        text-align: left
    }

    .how-block__items {
        margin: 0 -40px
    }

    .how-block__item {
        width: calc(50% - 80px);
        margin: 0 40px 40px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 0
    }

    .how-block__item::after {
        display: block !important;
        top: 50%;
        left: auto;
        margin: 0;
        right: -56px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        background-image: url("data:image/svg+xml,%3Csvg width='63' height='16' viewBox='0 0 63 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.226497 8L6 13.7735L11.7735 8L6 2.2265L0.226497 8ZM62.7071 8.70711C63.0976 8.31658 63.0976 7.68342 62.7071 7.29289L56.3431 0.928932C55.9526 0.538408 55.3195 0.538408 54.9289 0.928932C54.5384 1.31946 54.5384 1.95262 54.9289 2.34315L60.5858 8L54.9289 13.6569C54.5384 14.0474 54.5384 14.6805 54.9289 15.0711C55.3195 15.4616 55.9526 15.4616 56.3431 15.0711L62.7071 8.70711ZM6 9H62V7H6V9Z' fill='%23FF5D33'/%3E%3C/svg%3E%0A")
    }

    .how-block__item:nth-child(even)::after {
        display: none !important
    }

    .company-block__text {
        max-height: 336px
    }

    .company-block .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .company-block__info {
        width: 50%;
        margin-right: auto;
        max-width: 564px
    }

    .company-block__gallery {
        width: 45%;
        max-width: 452px
    }

    .company-block__gallery .slider {
        position: relative
    }

    .company-block__gallery .splide__track {
        overflow: hidden !important
    }

    .company-block__gallery .splide__arrows {
        display: block !important
    }

    .company-block__gallery .splide__arrow {
        background: #e53c10;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 32px;
        height: 48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        z-index: 1;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border-radius: 4px
    }

    .company-block__gallery .splide__arrow--prev {
        left: -16px
    }

    .company-block__gallery .splide__arrow--next {
        right: -16px
    }
}

@media screen and (min-width: 960px) {
    .section-h1, h1 {
        font-size: 46px
    }

    .section-h2, h2 {
        font-size: 40px
    }

    .section-h3, h3 {
        font-size: 32px
    }

    .header-logo {
        margin-right: auto
    }

    .header-info__item {
        margin: 0 20px
    }

    .header-info__item.sales {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header-feedback {
        margin-left: 36px
    }

    .banner-block {
        overflow: hidden
    }

    .banner-block::after {
        content: "";
        position: absolute;
        display: block;
        width: 100vw;
        left: 68.3%;
        top: 0;
        bottom: 0;
        height: 100%;
        background: #f5f5f5;
        z-index: 0
    }

    .banner-block .container {
        padding-top: 86px;
        padding-bottom: 86px
    }

    .banner-block__text {
        position: relative;
        z-index: 2;
        max-width: 60%
    }

    .banner-block__image {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        max-width: 720px;
        z-index: 1
    }

    .banner-block__btns .btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 40px;
        padding-left: 40px
    }

    .advantages-block__items {
        margin: 0 -20px
    }

    .advantages-block__item {
        width: 33.33%;
        padding: 32px 20px;
        text-align: left;
        border-right: 1px solid #ebebeb
    }

    .advantages-block__item:last-child {
        border-right: none
    }

    .advantages-block__title {
        font-weight: 900;
        text-transform: uppercase
    }

    .quiz-form > .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .quiz-block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 808px;
        flex: 1 1 808px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .quiz-block .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .quiz-block__steps {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-top: 32px
    }

    .quiz-block__step {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .quiz-block__step .btns {
        margin-top: auto
    }

    .calculate-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 24px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 392px;
        flex: 1 1 392px
    }

    .calculate-block .container {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .calculate-block .section-h3, .calculate-block__info {
        text-align: left
    }

    .calculate-block__form {
        max-width: 100%
    }
}

@media screen and (min-width: 1024px) {
    .container {
        padding-left: 50px;
        padding-right: 50px
    }

    .banner-block .container {
        padding-top: 100px;
        padding-bottom: 100px
    }

    .price-block__table {
        margin: 0 -50px !important
    }

    .price-block__btn {
        margin: 0 -50px
    }
}

@media screen and (min-width: 1152px) {
    .section-h1, h1 {
        font-size: 48px
    }

    .footer-company {
        width: 28.75817%
    }

    .footer-company__btn {
        padding: 16px 40px
    }

    .footer-info {
        width: 71.24183%
    }

    .banner-block__text {
        position: relative;
        z-index: 1;
        max-width: 808px
    }

    .advantages-block__items {
        margin: 0 -40px
    }

    .advantages-block__item {
        padding: 40px
    }

    .advantages-block__icon {
        margin-bottom: 20px
    }

    .advantages-block__title {
        font-size: 24px;
        margin-bottom: 8px
    }

    .advantages-block__caption {
        font-size: 16px
    }

    .quiz-block__step .options-option {
        width: calc(25% - 12px)
    }

    .how-block .container {
        padding-bottom: 8px
    }

    .how-block__item {
        width: calc(25% - 80px)
    }

    .how-block__item::after {
        display: block !important
    }

    .how-block__item:nth-child(even)::after {
        display: block !important
    }

    .how-block__item:last-child::after, .how-block__item:nth-child(4n)::after {
        display: none !important
    }

    .company-block__gallery {
        margin-right: 30px
    }

    .company-block__gallery .splide__arrow--prev {
        left: -32px;
        border-radius: 4px 0 0 4px
    }

    .company-block__gallery .splide__arrow--next {
        right: -32px;
        border-radius: 0 4px 4px 0
    }
}

@media screen and (min-width: 1224px) {
    html {
        scroll-padding-top: 120px
    }

    header {
        height: 120px;
        padding: 18px 0
    }

    .header-logo {
        margin-right: 36px;
        width: 184px;
        height: 84px
    }

    .header-logo img {
        width: 100%;
        height: auto
    }

    .header-info {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .header-info__item {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        margin: 0 40px 0 0
    }

    .header-info__item.address {
        margin-right: auto
    }

    .header-info__title {
        margin: 0
    }

    .header-info__value {
        color: #000
    }

    .header-info__caption {
        display: block;
        color: #7a7a7a;
        font-size: 16px;
        line-height: 150%
    }

    .header-info__caption[href] {
        font-weight: 600;
        color: #e53c10
    }

    .header-feedback {
        margin-left: 16px
    }
}

@media screen and (max-width: 1024px) {
    .mobileMenu {
        display: block
    }
}

@media screen and (max-width: 768px) {
    .table--responsive [data-hidden] {
        display: block
    }

    .table--responsive thead {
        display: none
    }

    .table--responsive tbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .table--responsive tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        margin: 0 0 10px;
        padding: 5px 15px;
        border: 1px solid #b5b5b5
    }

    .table--responsive tr td {
        display: block;
        padding: 10px 0 !important;
        border: none !important
    }

    .table--responsive tr td::before {
        content: attr(data-title);
        display: block;
        font-weight: 700
    }

    .price-block__table {
        border-top: 4px solid #27373d;
        margin: 0 -20px
    }

    .price-block__table.table--responsive tbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden
    }

    .price-block__table.table--responsive tr {
        border: none;
        opacity: 0;
        -webkit-transition: opacity .25s ease-in;
        -o-transition: opacity .25s ease-in;
        transition: opacity .25s ease-in;
        width: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        height: 0;
        background: #fff
    }

    .price-block__table.table--responsive tr.is-active {
        opacity: 1;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
        padding: 0 20px;
        height: auto
    }

    .price-block__table.table--responsive tr td {
        padding: 8px 0 !important
    }

    .price-block__table.table--responsive tr td.name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .price-block__table.table--responsive tr td.name:before {
        width: 100%
    }

    .price-block__table.table--responsive tr td.btns {
        display: none
    }

    .price-block__table.table--responsive tr td[data-hidden] {
        border-top: 1px solid #ebebeb !important;
        margin: 0 -20px;
        padding: 8px 20px 0 !important
    }

    .price-block__table.table--responsive tr td.flex-row::before, .price-block__table.table--responsive tr td[data-hidden]::before {
        padding-bottom: 0
    }

    .price-block__table.table--responsive tr td.flex-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .price-block__table.table--responsive tr td::before {
        font-weight: 400;
        color: #7a7a7a;
        padding-bottom: 4px
    }

    .price-block__table table {
        width: 100%;
        border-spacing: 0
    }

    .price-block__table--nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-top: 1px solid #ebebeb
    }

    .price-block__table--nav .arrow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 48px;
        width: 50%;
        cursor: pointer;
        -webkit-transition: .25s ease-in;
        -o-transition: .25s ease-in;
        transition: .25s ease-in
    }

    .price-block__table--nav .arrow:hover {
        background: #f5f5f5
    }

    .price-block__table--nav .arrow-prev {
        border-right: 1px solid #ebebeb
    }
}

@media screen and (min-width: 992px) {
    .download-wrapper {
        display: flex;
        width: 100%;
        padding: 12px 0;
    }

    .download-wrapper a {
        width: 50%;
        margin: 0 6px;
    }
}

.download-wrapper a {
    margin: 6px 6px
}

.grecaptcha-badge {
    visibility: hidden !important;
}