*,
*:before,
*:after
{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    outline: 0;
}

body
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    min-width: 320px;
    height: 100%;

    -webkit-transition: margin .3s ease;
            transition: margin .3s ease;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

html
{
    height: 100%;
}

.container
{
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 15px;
}
.container:after
{
    display: block;
    clear: both;

    content: ' ';
}
.container--lg
{
    max-width: 1328px;
}

.wrapper
{
    overflow: hidden;

    padding-top: 62px;

    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
}

body
{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    color: #555;
    background: #fff;
}

ul,
ol
{
    margin: 0;
    padding: 0;

    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 1.56;

    margin: 0;
    padding: 0;

    color: #555;
}

h1
{
    font-size: 32px;
    font-weight: 700;
}

h2
{
    font-size: 30px;
    font-weight: 700;
}

h3
{
    font-size: 28px;
    font-weight: 600;
}

h4
{
    font-size: 24px;
    font-weight: 600;
}

h5
{
    font-size: 20px;
    font-weight: 300;
}

h6
{
    font-size: 18px;
    font-weight: 300;
}

p
{
    margin: 0;
    padding: 0;
}

hr
{
    overflow: hidden;

    height: 1px;
    margin: 32px 0;

    border: 0;
    background: #e9e9e9;
}

q,
blockquote
{
    font-style: italic;

    display: block;

    text-align: center;
}

strong,
b
{
    font-weight: 700;
}

a
{
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-decoration: none;

    color: #191fcc;
}
a.button
{
    text-decoration: none;
}
a.button:hover
{
    text-decoration: none;
}

[class*='icon-']
{
    display: inline-block;

    vertical-align: top;
}

img[style*='float: left'],
img[style*='float:left'],
img[align='left']
{
    margin: 0 20px 5px 0;
}

img[style*='float: right'],
img[style*='float:right'],
img[align='right']
{
    margin: 0 0 5px 20px;
}

.static-content blockquote
{
    padding-left: 20px;

    text-align: left;

    border-left: 2px solid #ccc;
}

.static-content ul
{
    margin: 20px 0;
}
.static-content ul li
{
    position: relative;

    padding-left: 20px;
}
.static-content ul li:before
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 5px;
    height: 5px;

    content: '';
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);

    background: #f00;
}

.static-content ol
{
    margin: 20px 0;

    list-style-position: inside;
    list-style-type: decimal;

    counter-reset: item;
}
.static-content ol li
{
    position: relative;

    display: block;
}
.static-content ol li:before
{
    font-weight: 700;

    display: inline;

    content: counters(item, '.') '. ';
    counter-increment: item;
    vertical-align: top;
}

.static-content p
{
    margin-bottom: 16px;
}

.static-content table
{
    width: 100%;

    border-collapse: collapse;
}
.static-content table th
{
    font-weight: 700;

    padding: 5px;

    text-align: left;

    border-bottom: 1px solid #000;
}
.static-content table td
{
    padding: 5px;
}
.static-content table tr:nth-child(odd) td
{
    background-color: #f4f4f4;
}

.upper
{
    text-transform: uppercase;
}

.btn
{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.17;

    position: relative;

    display: block;

    width: 100%;
    padding: 19px 5px;

    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;
    vertical-align: top;

    color: #fff;
    border: none;
    border-radius: 50px;
    outline: none;
    background: #feca2e;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.btn:hover,
.btn.active
{
    color: #fff;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, .75);
            box-shadow: 0 8px 8px rgba(0, 0, 0, .75);
}
.btn.disabled,
.btn[disabled='disabled'],
.btn[disabled]
{
    cursor: not-allowed;

    color: #ccc;
    border-color: #ccc;
    background: #dce4ef;
}

textarea,
select,
.input
{
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 300;
    line-height: 60px;

    display: block;

    width: 100%;
    height: 60px;
    padding: 0 15px;

    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    color: #4a4a4a;
    border: 1px solid #cdcccc;
    border-radius: 0;
    background-color: #fff;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.input::-webkit-input-placeholder
{
    color: #9c9c9c;
}
textarea::-moz-placeholder,
select::-moz-placeholder,
.input::-moz-placeholder
{
    opacity: 1;
    color: #9c9c9c;
}
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
.input:-ms-input-placeholder
{
    color: #9c9c9c;
}
textarea:focus::-moz-placeholder,
select:focus::-moz-placeholder,
.input:focus::-moz-placeholder
{
    opacity: 1;
    color: transparent;
}
textarea:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
.input:focus::-webkit-input-placeholder
{
    color: transparent;
}
textarea:focus:-ms-input-placeholder,
select:focus:-ms-input-placeholder,
.input:focus:-ms-input-placeholder
{
    color: transparent;
}
textarea:focus::-ms-input-placeholder,
select:focus::-ms-input-placeholder,
.input:focus::-ms-input-placeholder
{
    color: transparent;
}
textarea:focus::placeholder,
select:focus::placeholder,
.input:focus::placeholder
{
    color: transparent;
}
textarea:focus,
select:focus,
.input:focus
{
    border-color: #feca2e;
    background-color: #fff;
}
textarea.disabled,
textarea[disabled='disabled'],
textarea[disabled],
select.disabled,
select[disabled='disabled'],
select[disabled],
.input.disabled,
.input[disabled='disabled'],
.input[disabled]
{
    background-color: #f3f3f3;
}
textarea.error,
select.error,
.input.error
{
    border-color: #ff5113;
}

textarea
{
    height: 150px;
    padding: 10px 20px;

    resize: none;
}

input[type='file']
{
    display: none;
}
input[type='file'] + label
{
    font-size: 14px;
    line-height: 24px;

    display: block;

    padding: 25px 15px;

    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;

    color: #dce4ef;
    border: 1px dashed #c4c4c4;
    background: #fff;
}
input[type='file'] + label:hover
{
    border-color: #696969;
    background: #e9e9e9;
}

select
{
    display: block;

    -webkit-transition: none;
            transition: none;

    border-radius: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 29px 17px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.selectric
{
    border-color: #cdcccc;
    background-color: #fff;
}
.selectric .label,
.selectric .button
{
    line-height: 58px;

    height: 58px;
}
.selectric .label
{
    font-size: 18px;
    font-weight: 300;

    margin-right: 45px;
    margin-left: 15px;

    color: #4a4a4a;
}
.selectric .button
{
    width: 45px;

    background-color: transparent;
}
.selectric-open .selectric .button::after
{
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.selectric .button::after
{
    width: 10px;
    height: 10px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border: 0;
    border-top-color: transparent;
    border-right: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
}

.selectric-items
{
    z-index: 1;

    border-color: #cdcccc;
    border-top: 0;
    border-bottom: 0;
    background-color: #fff;
    -webkit-box-shadow: 2px 3px 20px rgba(0, 0, 0, .25);
            box-shadow: 2px 3px 20px rgba(0, 0, 0, .25);
}
.selectric-items li
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.17;

    padding: 19px 17px 20px;

    color: #4a4a4a;
    border-bottom: 1px solid #cdcccc;
    background-color: #fff;
}
.selectric-items li:first-child
{
    display: none;
}
.selectric-items li:hover,
.selectric-items li.highlighted
{
    background: rgba(254, 202, 46, .3);
}

.icon-phone
{
    width: 24px;
    height: 24px;
}

.icon-download
{
    width: 13px;
    height: 16px;
}

.icon-bsz
{
    width: 16px;
    height: 12px;
}

.icon-colors
{
    width: 16px;
    height: 15px;
}

.icon-cylinders
{
    width: 16px;
    height: 15px;
}

.icon-kzs
{
    width: 16px;
    height: 13px;
}

.icon-padlock
{
    width: 13px;
    height: 16px;
}

.icon-recoding
{
    width: 16px;
    height: 12px;
}

.icon-ssw
{
    width: 16px;
    height: 16px;
}

.icon-stock
{
    width: 16px;
    height: 15px;
}

.row
{
    font-size: 0;
    line-height: 0;

    margin-right: -15px;
    margin-left: -15px;
}

.col
{
    font-size: 18px;
    line-height: 1.56;

    display: inline-block;

    width: 100%;
    padding: 0 15px;

    vertical-align: top;
}

.no-gutter
{
    margin-right: 0;
    margin-left: 0;
}
.no-gutter .col
{
    padding: 0;
}

.checkbox
{
    display: block;

    cursor: pointer;
}
.checkbox input[type='checkbox']
{
    display: none;
}
.checkbox input[type='checkbox']:checked + span:after
{
    opacity: 1;
}
.checkbox span
{
    font-size: 18px;
    line-height: 1.56;

    position: relative;

    display: block;

    padding: 0 0 0 30px;
}
.checkbox span:before
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;
    margin: -8px 0 0 0;

    content: '';

    background: #ddd;
}
.checkbox span:after
{
    position: absolute;
    top: 50%;
    left: 5px;

    display: block;

    width: 5px;
    height: 8px;
    margin: -5px 0 0 0;

    content: '';
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    opacity: 0;
    border-right: 2px solid #feca2e;
    border-bottom: 2px solid #feca2e;
}

.docs
{
    padding: 57px 0 69px;
}
.docs__title
{
    font-size: 25px;
    font-weight: 700;
    line-height: 1.16;

    display: block;

    margin-bottom: 32px;

    text-align: center;

    color: #888;
}
.docs__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.docs__item
{
    padding: 0 32px;
    margin-bottom: 20px;
}
@media (min-width: 769px)
{
    .docs__item {
        width: 30%;
    }
}
@media (max-width: 768px)
{
    .docs__item {
        width: 100%;
    }
}
.docs__link
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    color: #555;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.docs__link:hover
{
    color: #feca2e;
}
.docs__link-icon
{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    width: 32px;
    height: 32px;
    margin-right: 8px;

    border-radius: 50%;
    background-color: #feca2e;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.docs__link-txt
{
    width: calc(100% - 40px);
}

.header
{
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;

    padding: 15px 0 10px;

    -webkit-transition: margin .3s ease;
            transition: margin .3s ease;

    border-bottom: 1px solid #feca2e;
    background-color: #fff;
}
.header__wrap
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__toggler
{
    display: none;
}
.header__toggler::before,
.header__toggler::after
{
    position: absolute;
    right: 0;
    left: 0;

    content: '';
    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    border-top: 2px solid #000;
}
.header__toggler::before
{
    top: 0;
}
.header__toggler::after
{
    top: auto;
    right: 2px;
    bottom: 0;
}
.header__toggler-decor
{
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    border-bottom: 2px solid #000;
}
.header__toggler.active::before
{
    top: 10px;

    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.header__toggler.active::after
{
    right: 0;
    bottom: 10px;

    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.header__toggler.active .header__toggler-decor
{
    opacity: 0;
}
.header__logo
{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
        flex-direction: row;

    margin-right: auto;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo-link
{
    display: block;

    max-width: 101px;
    margin-right: 16px;
    padding-right: 16px;

    border-right: 1px solid #000;
}
.header__logo-link:last-child
{
    margin-right: 0;
    padding-right: 0;

    border-right: 0;
}
.header__logo-img
{
    display: block;

    width: 100%;
}
.header__nav
{
    padding: 0 10px;
}
.header__nav-list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__nav-item
{
    padding: 0 24px;
}
.header__nav-link
{
    line-height: 1.17;

    color: #000;
}
.header__nav-link:hover
{
    color: #feca2e;
}
.header__nav-holder
{
    display: none;
}
.header__nav-holder--bottom
{
    margin-top: auto;
}
.header__nav-phone
{
    font-weight: 700;
    line-height: 1.17;

    color: #fff;
}
.header__tel
{
    margin-left: auto;
}
.header__tel-link
{
    color: #000;
}
.header__tel-link:hover
{
    color: #feca2e;
}
.header__tel .icon-svg
{
    display: none;
}
.header__tel-txt
{
    font-weight: 700;
    line-height: 1.17;

    display: block;

    color: inherit;
}

.icon-svg
{
    display: block;
}

.info
{
    margin-bottom: 30px;
    padding-top: 48px;
}
.info__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    margin: 0 -100px;
    padding: 97px 90px 41px;

    background-color: #feca2e;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.info__item
{
    width: 20%;
    padding: 0 10px;
}
.info__holder
{
    word-wrap: break-word;
}
.info__icon
{
    width: 80px;
    height: 80px;
    margin: 0 auto 36px;
}
.info__img
{
    display: block;

    width: 100%;
    height: 100%;
}
.info__desc
{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.19;

    display: block;

    text-align: center;

    color: #555;
}

.main-screen
{
    padding: 94px 0 91px;

    border-top: 2px solid #feca2e;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main-screen::before
{
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: none;

    content: '';

    background: radial-gradient(1037.39px at 73.91% 58.46%, #29619c 0%, #204e7e 99.97%, #1f77d3 99.98%, #2b649b 99.99%, rgba(39, 93, 149, .015625) 100%);
}
.main-screen__bg
{
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;

    display: none;

    max-width: 140%;
    max-height: 70%;
}
.main-screen__wrap
{
    max-width: 640px;
}
.main-screen__title
{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.29;

    display: block;

    margin-bottom: 32px;

    color: #fff;
}
.main-screen__subtitle
{
    font-size: 36px;
    font-weight: 300;
    line-height: 1.72;

    display: block;

    margin-bottom: 61px;

    color: #fff;
}
.main-screen__btn
{
    display: inline-block;

    width: auto;
    padding-right: 30px;
    padding-left: 30px;
}

#preloader
{
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    margin: 0 auto;

    background: #fff;
}
#preloader .preloader-wrapper
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    margin: auto;
}

.preloader-center
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: auto;
    height: auto;

    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.tcon-loader--spinner360
{
    position: relative;

    display: block;

    width: 80px;
    height: 80px;

    -webkit-animation: tcon-spin360 .675s linear infinite forwards;
            animation: tcon-spin360 .675s linear infinite forwards;

    border-radius: 80%;
    background: #f1f1f1;
}
.tcon-loader--spinner360:before,
.tcon-loader--spinner360:after
{
    position: absolute;

    display: block;

    content: '';
}
.tcon-loader--spinner360:before
{
    z-index: 1;
    top: 0;
    right: 0;

    width: 50%;
    height: 80px;

    border-radius: 0 90px 90px 0;
    background: #feca2e;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#feca2e));
    background-image: linear-gradient(#f1f1f1, #feca2e);
}
.tcon-loader--spinner360:after
{
    z-index: 1;
    top: 50%;
    left: 50%;

    width: 70px;
    height: 70px;

    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    border-radius: 80%;
    background: #fff;
}

@-webkit-keyframes tcon-spin360
{
    to
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes tcon-spin360
{
    to
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.tcon-visuallyhidden
{
    position: absolute;

    overflow: hidden;
    clip: rect(0 0 0 0);

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    border: 0;
}
.tcon-visuallyhidden:active,
.tcon-visuallyhidden:focus
{
    position: static;

    overflow: visible;
    clip: auto;

    width: auto;
    height: auto;
    margin: 0;
}

.prod
{
    padding: 50px 0 88px;
}
.prod__row
{
    margin: 0 -40px 80px;
}
.prod__row:after
{
    display: block;
    clear: both;

    content: ' ';
}
.prod__row:nth-child(even) .prod__holder
{
    float: right;
}
.prod__row:nth-child(even) .prod__holder--img
{
    float: left;
}
.prod__row:nth-child(even) .prod__holder--img::after
{
    right: auto;
    left: 40px;
}
.prod__row:nth-child(even) .prod__img
{
    margin-right: 0;
    margin-left: -25%;
}
.prod__row:nth-child(even) .prod__bottom
{
    float: right;
}
.prod__row:last-child
{
    margin-bottom: 0;
}
.prod__row.show .prod__toggler
{
    bottom: 39px;
}
.prod__row.show .prod__toggler::before
{
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
.prod__row.show .prod__inner::before
{
    opacity: 0;
}
.prod__holder
{
    position: relative;
    z-index: 1;

    float: left;

    width: 55%;
    padding: 0 40px;
}
.prod__holder--img
{
    line-height: 358px;

    position: relative;
    z-index: 1;

    float: right;

    width: 45%;
    height: 358px;
}
.prod__holder--img::after
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 40px;
    bottom: 0;

    width: 284px;

    content: '';

    background-color: #dce4ef;
}
.prod__img
{
    display: inline-block;
    overflow: hidden;

    max-width: 150%;
    margin-right: -45%;

    vertical-align: middle;
    white-space: nowrap;
}
.prod__title
{
    font-size: 25px;
    font-weight: 700;
    line-height: 1.16;

    display: block;

    margin-bottom: 8px;

    color: #231f20;
}
.prod__subtitle
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    display: block;

    margin-bottom: 15px;

    color: #555;
}
.prod__desc
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    color: #555;
}
.prod__desc p
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    margin-bottom: 15px;

    color: #555;
}
.prod__inner
{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;

    position: relative;
    z-index: 1;

    overflow: hidden;

    height: 96px;
    margin-bottom: 29px;
    padding-right: 20px;

    color: #555;
}
.prod__inner::before
{
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;

    height: 100%;

    content: '';
    -webkit-transition: all .2s ease;
            transition: all .2s ease;

    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.prod__toggler
{
    position: absolute;
    z-index: 3;
    right: 40px;
    bottom: 49px;

    width: 15px;
    height: 15px;

    cursor: pointer;
}
.prod__toggler::before
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 10px;
    height: 10px;

    content: '';
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}
.prod__toggler:hover::before
{
    border-color: #feca2e;
}
.prod__bottom
{
    font-size: 0;
    line-height: 0;

    float: left;

    width: 55%;
    padding: 0 40px;
}
.prod__list,
.prod__info
{
    display: inline-block;

    width: calc(100% - 203px);

    vertical-align: middle;
}
.prod__item
{
    position: relative;
    z-index: 1;

    display: inline-block;

    margin-right: 8px;
    margin-bottom: 5px;

    vertical-align: middle;
}
.prod__item:hover .prod__tooltip
{
    visibility: visible;

    opacity: 1;
}
.prod__item-icon
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 32px;
    height: 32px;

    cursor: pointer;
    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    border-radius: 50%;
    background-color: #ededed;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.prod__item-icon .icon-svg
{
    fill: #888;
}
.prod__item-icon:hover
{
    background-color: #feca2e;
}
.prod__tooltip
{
    font-size: 12px;
    line-height: 1.2;

    position: absolute;
    z-index: 2;
    bottom: calc(100% + 10px);
    left: 0;

    visibility: hidden;

    width: 200px;
    padding: 7px;

    opacity: 0;
    color: #888;
    border-radius: 5px;
    background-color: #feca2e;
    -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, .15);
            box-shadow: 2px 3px 5px rgba(0, 0, 0, .15);
}
.prod__tooltip::before
{
    position: absolute;
    bottom: -8px;
    left: 10px;

    width: 0;
    height: 0;

    content: '';

    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #feca2e transparent transparent transparent;
}
.prod__btn
{
    display: inline-block;

    width: 203px;

    vertical-align: middle;
}
.prod__info-row
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    margin-bottom: 11px;
    padding-right: 10px;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.prod__info-row:last-child
{
    margin-bottom: 0;
}
.prod__info-list
{
    margin-right: 8px;
}
.prod__info .prod__item
{
    vertical-align: top;
}
.prod__info-txt
{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.17;

    color: #000;
}

.radio
{
    display: block;

    cursor: pointer;
}
.radio input[type='radio']
{
    display: none;
}
.radio input[type='radio']:checked + span:after
{
    opacity: 1;
}
.radio span
{
    font-size: 18px;
    line-height: 1.56;

    position: relative;

    display: block;

    padding: 0 0 0 30px;
}
.radio span:before
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;
    margin: -8px 0 0 0;

    content: '';

    border-radius: 50%;
    background: #ddd;
}
.radio span:after
{
    position: absolute;
    top: 50%;
    left: 4px;

    display: block;

    width: 8px;
    height: 8px;
    margin: -4px 0 0 0;

    content: '';
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    opacity: 0;
    border-radius: 50%;
    background: #feca2e;
}

.request
{
    padding: 72px 0;

    background-color: #ededed;
}
.request__title
{
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;

    display: block;

    max-width: 550px;
    margin: 0 auto 21px;

    text-align: center;

    color: #000;
}
.request__wrap
{
    max-width: 400px;
    margin: 0 auto;
}
.request__form-row
{
    margin-bottom: 8px;
}
.request__form-row:last-child
{
    margin-bottom: 0;
}
.request__form-box
{
    position: relative;

    display: block;
}
.request__form-box.full .request__form-label
{
    font-size: 12px;
    line-height: 12px;

    height: 26px;
    padding-top: 12px;

    color: rgba(74, 74, 74, .3);
}
.request__form-box .selectric-open
{
    z-index: 4;
}
.request__form-box .selectric .label
{
    line-height: 74px;
}
.request__form-label
{
    font-size: 14px;
    font-weight: 400;
    line-height: 62px;

    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;

    height: 60px;
    padding-left: 16px;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    color: #4a4a4a;
}
.request__form-input
{
    padding-top: 15px;
}
.request__form-submit
{
    max-width: 203px;
    margin: 32px auto 0;
}
@media (max-width: 1199px)
{
    .container
    {
        max-width: 808px;
    }
    .wrapper
    {
        padding-top: 57px;
    }
    .docs
    {
        padding: 54px 0 25px;
    }
    .header
    {
        padding-top: 10px;
    }
    .header__nav-item
    {
        padding: 0 16px;
    }
    .header__nav-link
    {
        font-weight: 700;
    }
    .info__list
    {
        margin: 0 -80px;
        padding-right: 50px;
        padding-left: 50px;
    }
    .main-screen__title
    {
        margin-bottom: 33px;
    }
    .main-screen__subtitle
    {
        line-height: 1.28;

        max-width: 400px;
        margin-bottom: 30px;
    }
    .prod
    {
        padding-bottom: 79px;
    }
    .prod__row
    {
        margin-right: -10px;
        margin-left: -10px;
    }
    .prod__row:nth-child(even) .prod__holder--img::after
    {
        left: 10px;
    }
    .prod__row:nth-child(even) .prod__img
    {
        margin-right: -2%;
    }
    .prod__holder
    {
        width: 61%;
        padding: 0 10px;
    }
    .prod__holder--img
    {
        line-height: 279px;

        width: 39%;
        height: 279px;
        margin-top: 36px;
    }
    .prod__holder--img::after
    {
        right: 10px;

        width: 222px;
    }
    .prod__img
    {
        max-width: 130%;
        margin-left: -2%;
    }
    .prod__toggler
    {
        right: 15px;
    }
    .prod__bottom
    {
        width: 61%;
        padding: 0 10px;
    }
}
@media (max-width: 999px)
{
    .container
    {
        max-width: 799px;
    }
    .header__nav-link
    {
        font-weight: 300;
    }
    .info__list
    {
        position: relative;
        z-index: 1;

        margin: 0 -15px;
        padding-right: 10px;
        padding-bottom: 41px;
        padding-left: 10px;
    }
    .info__list::before
    {
        position: absolute;
        z-index: -1;
        top: 0;
        right: -9999px;
        bottom: 0;
        left: -9999px;

        content: '';

        background-color: #feca2e;
    }
    .info__icon
    {
        margin-bottom: 39px;
    }
    .prod__row:nth-child(even) .prod__holder--img::after
    {
        left: 87px;
    }
    .prod__row:nth-child(even) .prod__img
    {
        margin-left: -2%;
    }
    .prod__holder
    {
        width: 51%;
        padding: 0 13px;
    }
    .prod__holder--img
    {
        width: 49%;
    }
    .prod__holder--img::after
    {
        right: 87px;
    }
    .prod__img
    {
        max-width: 107%;
    }
    .prod__subtitle
    {
        font-size: 16px;
        line-height: 1.75;

        margin-bottom: 16px;
    }
    .prod__desc
    {
        font-size: 16px;
        line-height: 1.75;
    }
    .prod__desc p
    {
        font-size: 16px;
        line-height: 1.75;
    }
    .prod__bottom
    {
        width: 51%;
    }
    .prod__item:hover .prod__tooltip
    {
        visibility: hidden;

        opacity: 0;
    }
    .prod__item.show .prod__tooltip
    {
        visibility: visible;

        opacity: 1;
    }
    .prod__info-row
    {
        margin-bottom: 0;

        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .prod__info .prod__item
    {
        margin-bottom: 15px;
    }
    .prod__info-txt
    {
        margin-bottom: 15px;
    }
}
@media (max-width: 767px)
{
    .wrapper
    {
        padding-top: 52px;
    }
    .docs__title
    {
        margin-bottom: 56px;
    }
    .docs__list
    {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .docs__item
    {
        margin-bottom: 40px;
        padding: 0 34px;
    }
    .header
    {
        padding-top: 7px;
        padding-bottom: 16px;
    }
    .header__toggler
    {
        position: relative;
        z-index: 1;

        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;

        width: 32px;
        height: 22px;
        margin-right: auto;
    }
    .header__logo
    {
        margin-right: 0;
        padding: 0 10px;
    }
    .header__logo-link
    {
        max-width: 66px;
        margin-right: 10px;
        padding-right: 10px;
    }
    .header__nav
    {
        position: fixed;
        z-index: 5;
        top: 0;
        bottom: 0;
        left: -263px;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow: hidden;
        overflow-y: auto;
            flex-direction: column;

        width: 263px;
        height: 100vh;
        padding: 0;

        -webkit-transition: all .3s ease;
                transition: all .3s ease;

        background-color: #555;
        -webkit-box-shadow: 4px 0 20px rgba(0, 0, 0, 0);
                box-shadow: 4px 0 20px rgba(0, 0, 0, 0);

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header__nav.show
    {
        left: 0;

        -webkit-box-shadow: 4px 0 20px rgba(0, 0, 0, .5);
                box-shadow: 4px 0 20px rgba(0, 0, 0, .5);
    }
    .header__nav-box
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        padding: 25px 32px;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header__nav-list
    {
            flex-direction: column;

        margin-top: auto;
        margin-bottom: 11px;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .header__nav-item
    {
        margin-bottom: 26px;
        padding: 0;
    }
    .header__nav-link
    {
        color: #fff;
    }
    .header__nav-holder
    {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;

        margin-bottom: 15px;
    }
    .header__nav-holder--bottom
    {
        margin-bottom: 0;
    }
    .header__tel .icon-svg
    {
        display: block;
    }
    .header__tel-txt
    {
        display: none;
    }
    .info
    {
        padding-top: 16px;
    }
    .info__list
    {
        padding-top: 27px;
        padding-bottom: 46px;
    }
    .info__item
    {
        width: 50%;
        margin-bottom: 41px;
        padding: 0 5px;
    }
    .info__item:last-child
    {
        margin-bottom: 0;
    }
    .info__icon
    {
        margin-bottom: 42px;
    }
    .main-screen
    {
        position: relative;
        z-index: 1;

        padding-top: 30px;
        padding-bottom: 31px;
    }
    .main-screen::before
    {
        display: block;
    }
    .main-screen__bg
    {
        display: block;
    }
    .main-screen__wrap
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        height: 415px;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .main-screen__title
    {
        font-size: 32px;
        line-height: 1.25;

        margin-bottom: 12px;
    }
    .main-screen__subtitle
    {
        font-size: 24px;
        line-height: 1.42;

        margin-bottom: 15px;
    }
    .main-screen__btn
    {
        display: block;

        width: 100%;
        margin-top: auto;
    }
    .prod
    {
        padding-top: 34px;
        padding-bottom: 60px;
    }
    .prod__row
    {
        margin: 0 0 60px;
    }
    .prod__row:nth-child(even) .prod__holder--img::after
    {
        left: 50%;
    }
    .prod__row:nth-child(even) .prod__img
    {
        margin: 0;
    }
    .prod__holder
    {
        float: none;

        width: 100%;
        margin-bottom: 45px;
        padding: 0;
    }
    .prod__holder--img
    {
        line-height: 214px;

        float: none;

        width: 100%;
        height: 214px;
        margin-top: 0;
        margin-bottom: 23px;

        text-align: center;
    }
    .prod__holder--img::after
    {
        right: auto;
        left: 50%;

        width: 166px;
        height: 214px;

        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .prod__img
    {
        max-width: 100%;
        max-height: 145px;
        margin: 0;
    }
    .prod__subtitle
    {
        line-height: 1.63;

        margin-bottom: 9px;
    }
    .prod__inner
    {
        margin-bottom: 0;
    }
    .prod__toggler
    {
        right: -1px;
        bottom: 20px;
    }
    .prod__bottom
    {
        float: none;

        width: 100%;
        padding: 0;
    }
    .prod__list,
    .prod__info
    {
        position: relative;
        z-index: 1;

        display: block;

        width: 100%;
        margin-bottom: 25px;

        text-align: center;
    }
    .prod__item
    {
        position: static;
    }
    .prod__tooltip
    {
        left: 50%;

        margin-left: -100px;
    }
    .prod__tooltip::before
    {
        display: none;
    }
    .prod__btn
    {
        display: block;

        width: 100%;
    }
    .prod__info-row
    {
        position: relative;
        z-index: 1;

        margin-bottom: 17px;

        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .prod__info .prod__item
    {
        margin-bottom: 0;
    }
    .prod__info-txt
    {
        margin-bottom: 0;

        color: #888;
    }
    .request
    {
        padding: 40px 0;
    }
    .request__title
    {
        font-size: 18px;
        line-height: 1.56;

        margin-bottom: 34px;
    }
    .request__form-submit
    {
        margin-top: 22px;
    }
}
@media (min-width: 320px)
{
    .xs-12
    {
        width: 100%;
    }
    .xs-11
    {
        width: 91.66667%;
    }
    .xs-10
    {
        width: 83.33333%;
    }
    .xs-9
    {
        width: 75%;
    }
    .xs-8
    {
        width: 66.66667%;
    }
    .xs-7
    {
        width: 58.33333%;
    }
    .xs-6
    {
        width: 50%;
    }
    .xs-5
    {
        width: 41.66667%;
    }
    .xs-4
    {
        width: 33.33333%;
    }
    .xs-3
    {
        width: 25%;
    }
    .xs-2
    {
        width: 16.66667%;
    }
    .xs-1
    {
        width: 8.33333%;
    }
    .offset-xs-11
    {
        margin-left: 91.66667%;
    }
    .offset-xs-10
    {
        margin-left: 83.33333%;
    }
    .offset-xs-9
    {
        margin-left: 75%;
    }
    .offset-xs-8
    {
        margin-left: 66.66667%;
    }
    .offset-xs-7
    {
        margin-left: 58.33333%;
    }
    .offset-xs-6
    {
        margin-left: 50%;
    }
    .offset-xs-5
    {
        margin-left: 41.66667%;
    }
    .offset-xs-4
    {
        margin-left: 33.33333%;
    }
    .offset-xs-3
    {
        margin-left: 25%;
    }
    .offset-xs-2
    {
        margin-left: 16.66667%;
    }
    .offset-xs-1
    {
        margin-left: 8.33333%;
    }
}
@media (min-width: 768px)
{
    .sm-12
    {
        width: 100%;
    }
    .sm-11
    {
        width: 91.66667%;
    }
    .sm-10
    {
        width: 83.33333%;
    }
    .sm-9
    {
        width: 75%;
    }
    .sm-8
    {
        width: 66.66667%;
    }
    .sm-7
    {
        width: 58.33333%;
    }
    .sm-6
    {
        width: 50%;
    }
    .sm-5
    {
        width: 41.66667%;
    }
    .sm-4
    {
        width: 33.33333%;
    }
    .sm-3
    {
        width: 25%;
    }
    .sm-2
    {
        width: 16.66667%;
    }
    .sm-1
    {
        width: 8.33333%;
    }
    .offset-sm-11
    {
        margin-left: 91.66667%;
    }
    .offset-sm-10
    {
        margin-left: 83.33333%;
    }
    .offset-sm-9
    {
        margin-left: 75%;
    }
    .offset-sm-8
    {
        margin-left: 66.66667%;
    }
    .offset-sm-7
    {
        margin-left: 58.33333%;
    }
    .offset-sm-6
    {
        margin-left: 50%;
    }
    .offset-sm-5
    {
        margin-left: 41.66667%;
    }
    .offset-sm-4
    {
        margin-left: 33.33333%;
    }
    .offset-sm-3
    {
        margin-left: 25%;
    }
    .offset-sm-2
    {
        margin-left: 16.66667%;
    }
    .offset-sm-1
    {
        margin-left: 8.33333%;
    }
}
@media (min-width: 1000px)
{
    .md-12
    {
        width: 100%;
    }
    .md-11
    {
        width: 91.66667%;
    }
    .md-10
    {
        width: 83.33333%;
    }
    .md-9
    {
        width: 75%;
    }
    .md-8
    {
        width: 66.66667%;
    }
    .md-7
    {
        width: 58.33333%;
    }
    .md-6
    {
        width: 50%;
    }
    .md-5
    {
        width: 41.66667%;
    }
    .md-4
    {
        width: 33.33333%;
    }
    .md-3
    {
        width: 25%;
    }
    .md-2
    {
        width: 16.66667%;
    }
    .md-1
    {
        width: 8.33333%;
    }
    .offset-md-11
    {
        margin-left: 91.66667%;
    }
    .offset-md-10
    {
        margin-left: 83.33333%;
    }
    .offset-md-9
    {
        margin-left: 75%;
    }
    .offset-md-8
    {
        margin-left: 66.66667%;
    }
    .offset-md-7
    {
        margin-left: 58.33333%;
    }
    .offset-md-6
    {
        margin-left: 50%;
    }
    .offset-md-5
    {
        margin-left: 41.66667%;
    }
    .offset-md-4
    {
        margin-left: 33.33333%;
    }
    .offset-md-3
    {
        margin-left: 25%;
    }
    .offset-md-2
    {
        margin-left: 16.66667%;
    }
    .offset-md-1
    {
        margin-left: 8.33333%;
    }
}
@media (min-width: 1200px)
{
    .lg-12
    {
        width: 100%;
    }
    .lg-11
    {
        width: 91.66667%;
    }
    .lg-10
    {
        width: 83.33333%;
    }
    .lg-9
    {
        width: 75%;
    }
    .lg-8
    {
        width: 66.66667%;
    }
    .lg-7
    {
        width: 58.33333%;
    }
    .lg-6
    {
        width: 50%;
    }
    .lg-5
    {
        width: 41.66667%;
    }
    .lg-4
    {
        width: 33.33333%;
    }
    .lg-3
    {
        width: 25%;
    }
    .lg-2
    {
        width: 16.66667%;
    }
    .lg-1
    {
        width: 8.33333%;
    }
    .offset-lg-11
    {
        margin-left: 91.66667%;
    }
    .offset-lg-10
    {
        margin-left: 83.33333%;
    }
    .offset-lg-9
    {
        margin-left: 75%;
    }
    .offset-lg-8
    {
        margin-left: 66.66667%;
    }
    .offset-lg-7
    {
        margin-left: 58.33333%;
    }
    .offset-lg-6
    {
        margin-left: 50%;
    }
    .offset-lg-5
    {
        margin-left: 41.66667%;
    }
    .offset-lg-4
    {
        margin-left: 33.33333%;
    }
    .offset-lg-3
    {
        margin-left: 25%;
    }
    .offset-lg-2
    {
        margin-left: 16.66667%;
    }
    .offset-lg-1
    {
        margin-left: 8.33333%;
    }
}
