.form
{
    margin-bottom: 0;
}

.input-group
{
    position: relative;

    display: flex;

    justify-content: flex-start;
    align-items: stretch;
}

.input-group__icon
{
    display: flex;

    width: 40px;

    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #e5e5e5;

    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.input-group__icon svg
{
    width: 20px !important;
    height: 20px !important;
}

.input-group__icon svg path
{
    fill: #4d4d4c;
}

.input-group__item
{
    flex-grow: 1;
}

.input-group__item .form-control
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group__btn
{
    position: absolute;
    top: 50%;
    right: 10px;

    transform: translateY(-50%);
}

.label
{
    display: block;

    margin-bottom: .5em;
}

.form-group:not(:last-child)
{
    margin-bottom: 15px;
}

.form-group__radios
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.form-group__radios .radio:not(:last-child)
{
    margin-right: 12px;
}

.form-control
{
    width: 100%;
    max-width: 390px;
    height: 40px;
    padding: 8px 16px;

    transition: .4s;

    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #f7f7f7;
}

.form-control::-webkit-input-placeholder
{
    color: #a6a6a5;
}

.form-control::-moz-placeholder
{
    color: #a6a6a5;
}

.form-control::-ms-input-placeholder
{
    color: #a6a6a5;
}

.form-control--password
{
    padding-right: 40px;
}

.form-control:focus
{
    border-color: #6bafd6;
    outline: none;
    background-color: #fff;
}

.form-control::-webkit-calendar-picker-indicator
{
    background-color: transparent;
}

select.form-control
{
    padding-right: 32px;

    background-image: url('/img/icon_menu-down.svg');
    background-repeat: no-repeat;
    background-position: top 50% right 4px;
    background-size: 24px 24px;

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

select.form-control:invalid
{
    color: #a6a6a5;
}

select.form-control [disabled]
{
    color: #a6a6a5;
}

select.form-control option
{
    color: #4d4d4c;
}

textarea.form-control
{
    height: auto;
}

.form-label
{
    font-size: 12px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.form-label__icon
{
    margin-right: 5px;
}

.form-label__icon svg
{
    width: 18px !important;
    height: 18px !important;
}

.form-label__icon svg path
{
    fill: #a6a6a5;
}

.form-label__icon--danger svg path
{
    fill: #fc4b1c;
}

.form-label__icon--success svg path
{
    fill: #36c37d;
}

.form-label__text
{
    line-height: 1.2;

    color: #a6a6a5;
}

.blank-radio__input
{
    display: none;
}

.blank-radio__input:checked + span
{
    color: #fff;
    background-color: #008895;
    box-shadow: 0 0 0 1px #008895;
}

.blank-radio__label
{
    position: relative;

    display: inline-block;

    padding: 0 6px;

    cursor: pointer;
    transition: .4s;

    border-radius: 6px;
}

.blank-radio__label:hover
{
    color: #008895;
}

.radio__input
{
    display: none;
}

.radio__input:checked + span:before
{
    background-color: #4d4d4c;
    box-shadow: inset 0 0 0 1px #e5e5e5, inset 0 0 0 4px #fff;
}

.radio__label
{
    position: relative;

    display: block;

    padding-left: 30px;

    cursor: pointer;
}

.radio__label:before
{
    position: absolute;
    left: 0;

    width: 18px;
    height: 18px;

    content: '';

    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #e5e5e5;
}

.checkbox__input
{
    display: none;
}

.checkbox__input:checked + span:before
{
    background-image: url('/img/icon_check.svg');
    background-position: 50% 50%;
    background-size: 16px 16px;
}

.checkbox__label
{
    position: relative;

    display: block;

    padding-left: 30px;

    cursor: pointer;
}

.checkbox__label:before
{
    position: absolute;
    left: 0;

    width: 18px;
    height: 18px;

    content: '';

    border-radius: 2px;
    box-shadow: inset 0 0 0 1px #e5e5e5;
}

textarea
{
    height: auto;

    resize: none;
}

.form-submit
{
    margin-top: 30px;
}

.form-submit .btn
{
    width: 100%;
    max-width: 430px;
}

.form-msg
{
    display: flex;

    margin-top: 15px;
    padding: 10px 15px;

    border-radius: 5px;
    background-color: #f7f7f7;

    justify-content: flex-start;
    align-items: center;
}

.form-msg__icon
{
    margin-right: 5px;
}

.form-msg__icon svg
{
    width: 20px !important;
    height: 20px !important;
}

.form-msg--error
{
    color: #fc4b1c;
    background-color: #ffebe5;
}

.form-msg--error svg path
{
    fill: #fc4b1c;
}

.form-file
{
    position: relative;

    display: block;

    transition: .4s;

    opacity: .75;
}

.form-file:hover
{
    cursor: pointer;

    opacity: 1;
}

.form-file__input
{
    position: absolute;
    z-index: -1;

    overflow: hidden;

    width: .1px;
    height: .1px;

    opacity: 0;
}

.form-file__label
{
    line-height: 20px;

    position: relative;

    display: inline-block;

    padding-top: .4em;
    padding-bottom: .4em;
    padding-left: 4em;

    vertical-align: middle;
}

.form-file__label:before
{
    position: absolute;
    top: 50%;
    left: 10px;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    background: url('/img/icon_file-document.svg') no-repeat center;
    background-size: contain;
}

.file-list
{
    margin-bottom: 8px;
    padding-bottom: 8px;

    border-bottom: 1px solid #e5e5e5;
}

.file-list__item
{
    margin-bottom: 8px;
}

.file-item
{
    position: relative;

    padding-right: 28px;
    padding-left: 56px;
}

.file-item::before
{
    position: absolute;
    top: 50%;
    left: 10px;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    content: '';

    opacity: .5;
    background: url('/img/icon_file-document.svg') no-repeat center;
    background-size: contain;
}

.file-item__label
{
    line-height: 20px;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;

    opacity: .5;
}

.file-item__remove
{
    position: absolute;
    top: 50%;
    right: 0;

    overflow: hidden;

    width: 20px;
    height: 20px;
    margin-top: -10px;

    cursor: pointer;
    transition: .4s;
    text-indent: -9999px;

    border: 0 none;
    border-radius: 0;
    background-color: #fff;

    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}

.file-item__remove:hover
{
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}

.file-item__remove::before,
.file-item__remove::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 16px;
    height: 2px;
    margin-top: -1px;
    margin-left: -8px;

    content: '';

    background-color: #fc4b1c;
}

.file-item__remove::before
{
    transform: rotate(135deg);
}

.file-item__remove::after
{
    transform: rotate(225deg);
}

.btn
{
    font-size: 14px;
    line-height: 18px;

    position: relative;

    display: inline-block;

    cursor: pointer;
    transition: .4s;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;

    border-radius: 5px;
}

.btn:focus
{
    outline-color: #6bafd6;
}

.btn--main
{
    font-weight: bold;

    padding: 10px 20px;

    text-align: center;

    color: #4d4d4c;
    border: 1px solid #e5e5e5;
    background: linear-gradient(to bottom, #fff 0%, #f7f7f7 100%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.btn--main:hover
{
    color: #008895;
    background: linear-gradient(to bottom, #f7f7f7 0%, #fff 100%);
}

.btn--pa
{
    font-weight: bold;

    transition: .4s;

    color: rgba(255, 255, 255, .9);
    background: linear-gradient(to top, #008895 0%, #47bcc8 100%);
    background-color: #008895;
}

.btn--pa:hover
{
    color: #fff;
}

.btn--pa:hover:before
{
    opacity: 1;
}

.btn--pa:before,
.btn--pa:after
{
    position: absolute;

    content: '';
}

.btn--pa:before
{
    top: 50%;

    transition: .4s;
    transform: translateY(-50%);

    opacity: .9;
    background: url('/img/icon_hospital-white.svg') no-repeat center;
    background-size: contain;
}

.btn--pa:after
{
    top: 0;
    bottom: 0;

    width: 1px;

    background-color: rgba(255, 255, 255, .4);
}

.icon-link
{
    line-height: 1.2;

    position: relative;

    display: inline-flex;

    transition: .4s;
    text-decoration: none;

    color: #4d4d4c;

    justify-content: flex-start;
    align-items: center;
}

.icon-link:hover
{
    color: #008895;
}

.icon-link:hover span svg path
{
    fill: #008895;
}

.icon-link__icon
{
    max-width: 24px;
    margin-right: 5px;

    flex-shrink: 0;
    flex-basis: 24px;
}

.icon-link__icon--lg
{
    max-width: 58px;

    flex-basis: 58px;
}

.icon-link__icon svg path
{
    transition: .4s;

    fill: #4d4d4c;
}

.icon-link--disabled
{
    cursor: not-allowed;
    pointer-events: none;

    opacity: .5;

    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}

.check-pass
{
    padding: 0;

    cursor: pointer;
    transition: .4s;

    border: 0 none;
    outline: none;
    background-color: transparent;
}

.check-pass svg path
{
    transition: .4s;

    fill: #a6a6a5;
}

.check-pass.active svg path
{
    fill: #008895;
}

.check-pass:hover svg path
{
    fill: #4d4d4c;
}

.link
{
    position: relative;

    display: inline-block;

    transition: .4s;
    vertical-align: middle;
}

.link--gray
{
    font-weight: bold;

    text-decoration: none;

    color: #a6a6a5;
}

.link--gray:hover
{
    color: #4d4d4c;
}

.link--out
{
    font-size: 12px;

    margin-left: 20px;

    text-decoration: none;

    color: #4d4d4c;
}

.link--out:before
{
    position: absolute;
    top: 50%;
    left: -20px;

    width: 14px;
    height: 14px;

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

    opacity: .75;
    background: url('/img/icon_open-in-new-black.svg') no-repeat center;
    background-size: contain;
}

.doc-link
{
    position: relative;

    display: inline-block;

    text-decoration: none;

    color: #4d4d4c;
}

.doc-link:before
{
    position: absolute;
    top: 50%;
    left: 0;

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

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.doc-link--pdf:before
{
    background-image: url('/img/icon_file-pdf.svg');
}

.doc-link--xls:before
{
    background-image: url('/img/icon_file-xls.svg');
}

.doc-link--doc:before
{
    background-image: url('/img/icon_file-doc.svg');
}

.doc-link--txt:before
{
    background-image: url('/img/icon_file-txt.svg');
}

.doc-link--jpg:before
{
    background-image: url('/img/icon_file-jpg.svg');
}

.doc-link--png:before
{
    background-image: url('/img/icon_file-png.svg');
}

.doc-link--some:before
{
    background-image: url('/img/icon_file-some.svg');
}

*
{
    box-sizing: border-box;
}

body
{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;

    margin: 0;

    color: #4d4d4c;
    background-color: #f7f7f7;
}

body input,
body select,
body textarea,
body button
{
    font-family: 'Open Sans', sans-serif;
}

a
{
    transition: .4s;

    color: #008895;
}

a:hover
{
    text-decoration: none;

    color: #001416;
}

.wrapper
{
    display: flex;
    flex-direction: column;

    min-height: 100vh;
}

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

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

    vertical-align: middle;
}

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

    width: 100%;
    padding: 20px 0;

    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
}

.header__row
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.header__nav
{
    margin-left: auto;
}

.header__profile
{
    margin-left: auto;
}

.logo
{
    display: block;
}

.logo__img
{
    display: block;

    height: 32px;
}

.main-nav
{
    position: relative;
}

.main-menu
{
    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu__link
{
    font-weight: bold;

    position: relative;

    display: block;

    white-space: nowrap;
    text-decoration: none;

    color: #4d4d4c;
    border-radius: 6px;
}

.main-menu__link i
{
    vertical-align: middle;
}

.main-menu__link:hover,
.main-menu__link.active
{
    color: #008895;
}

.main-menu__link.active
{
    background-color: #f7f7f7;
}

.main-menu__label
{
    line-height: 20px;

    display: inline-block;

    vertical-align: middle;
}

.sub-menu
{
    margin: 0;

    list-style: none;

    background-color: #fff;
}

.sub-menu__link
{
    position: relative;

    display: block;

    white-space: nowrap;
    text-decoration: none;

    color: #4d4d4c;
}

.sub-menu__link:hover,
.sub-menu__link.active
{
    color: #008895;
    background-color: #f7f7f7;
}

.sub-menu__link.active:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    content: '';

    background-color: #008895;
}

.main-btn
{
    position: relative;

    display: block;

    width: 22px;
    height: 17px;
    padding: 0;

    cursor: pointer;

    border: 0 none;
    outline: none;
    background-color: transparent;
}

.main-btn__line
{
    position: absolute;
    left: 0;

    display: block;

    width: 100%;
    height: 3px;

    transition: .4s;

    background-color: #008895;
}

.main-btn__line:first-child
{
    top: 0;
}

.main-btn__line:nth-child(2)
{
    top: 7px;
}

.main-btn__line:last-child
{
    bottom: 0;
}

.main-btn.open span:first-child
{
    top: 7px;

    transform: rotate(135deg);
}

.main-btn.open span:nth-child(2)
{
    left: -15px;

    opacity: 0;
}

.main-btn.open span:last-child
{
    top: 7px;

    transform: rotate(-135deg);
}

.main-card
{
    background-color: #fff;
}

.main-card__img
{
    width: 100%;
}

.main-card__extra
{
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.main-card__title
{
    font-weight: bold;
    line-height: 1.2;

    margin-bottom: 15px;
}

.main-card__title--top
{
    margin-bottom: 0;
}

.main-card__btns
{
    display: flex;

    margin: 15px -10px -5px;

    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.main-card__btn
{
    padding: 5px 10px;
}

.main-card__map
{
    height: 350px;

    background-color: #f7f7f7;
}

.block__top
{
    margin-bottom: 30px;
}

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

.block__title
{
    margin: 0;
}

.bottom
{
    background-color: #fff;
}

.main__breadcrumbs
{
    padding: 15px 0;

    background-color: #f2f2f2;
}

.main__body
{
    margin-top: 15px;
}

.main__address
{
    margin-top: 1em;
}

.main__row
{
    margin-bottom: -15px;
}

.main__col
{
    padding-bottom: 15px;
}

.main__pager
{
    margin-top: 20px;
}

.grid
{
    display: flex;

    margin: -15px;

    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.grid--aife
{
    align-items: flex-end;
}

.col
{
    padding: 15px;

    flex-grow: 1;
    flex-basis: 100%;
}

.reg-block__head
{
    margin-bottom: 20px;

    color: #a6a6a5;
}

.reg-block__title
{
    font-size: 20px;
    line-height: 1;

    margin-bottom: 5px;
}

.reg-block__regional
{
    max-width: 380px;
}

.box
{
    overflow: hidden;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.box__head
{
    color: #fff;
    background-color: #008895;
}

.box__title
{
    font-weight: bold;
    line-height: 1;

    margin-bottom: 5px;
}

.box__block:not(:last-child)
{
    border-bottom: 1px solid #e5e5e5;
}

.box__bottom
{
    border-top: 1px solid #e5e5e5;
}

.enter
{
    max-width: 490px;
    margin: 0 auto;
}

.enter__row
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.enter__col
{
    text-align: center;

    flex-grow: 1;
    flex-basis: 100%;
}

.help-box
{
    overflow: hidden;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.help-box__description ul
{
    margin: 0;
    padding-left: 20px;
}

.help-box__description ul li
{
    font-size: 16px;
}

.help-box__cover--cz
{
    padding: 16px 28%;

    background-color: #eae60e;
}

.help-box__cover img
{
    width: 100%;
}

.help-box__list .advantages__item
{
    padding-top: 15px;
    padding-bottom: 15px;
}

.help-box__list .advantages__item:not(:last-child)
{
    position: relative;

    margin-bottom: 0;
}

.help-box__list .advantages__item:not(:last-child):after
{
    position: absolute;
    right: 0;
    bottom: 0;

    height: 1px;

    content: '';

    background-color: #e5e5e5;
}

.help-box__item:not(:last-child)
{
    border-bottom: 1px solid #e5e5e5;
}

.help-box__title
{
    font-weight: bold;
    line-height: 1;

    margin-top: 0;
    margin-bottom: 10px;
}

.help-box__title--alone
{
    margin-bottom: 0;
}

.help-box__location
{
    padding-bottom: 5px;

    color: #a6a6a5;
    border-bottom: 1px solid #d1d1d1;
}

.help-box__subtitle
{
    margin-top: 1em;
    margin-bottom: .5em;
}

.help-box__description
{
    -webkit-hyphens: auto;
            hyphens: auto;

        -ms-hyphens: auto;
}

.help-box__date
{
    color: #a6a6a5;
}

.help-box__bottom
{
    border-top: 1px solid #e5e5e5;
    background-color: #f7f7f7;
}

.help-box__row
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
}

.help-box__visual
{
    display: flex;
    flex-direction: column;

    background-color: #f7f7f7;

    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.help-box__cover svg path
{
    fill: #a6a6a5;
}

.timetable__title
{
    color: #a6a6a5;
}

.timetable__item
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
}

.timetable__item--hd
{
    color: #fc4b1c;
}

.timetable__day
{
    flex-shrink: 0;
}

.timetable__time
{
    flex-grow: 1;
    flex-shrink: 0;
}

.advantages__intro
{
    margin-bottom: 20px;

    -webkit-hyphens: auto;
            hyphens: auto;

        -ms-hyphens: auto;
}

.advantages__list
{
    font-weight: bold;

    margin: 0 0 20px;
}

.advantages__item:not(:last-child)
{
    margin-bottom: 15px;
}

.advantages__icon
{
    max-width: 24px;
    margin-right: 5px;

    flex-shrink: 0;
    flex-basis: 24px;
}

.advantages__icon svg path
{
    fill: #4d4d4c;
}

.advantages__bottom .btn
{
    width: 100%;
}

.advantage-item
{
    font-weight: normal;

    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.advantage-item__icon
{
    max-width: 24px;
    margin-right: 10px;

    opacity: .5;

    flex-basis: 24px;
    flex-shrink: 0;
}

.advantage-item__label
{
    line-height: 1.2;

    flex-grow: 1;
}

.specifications__title
{
    line-height: 1.2;
}

.specifications__list
{
    padding-left: 15px;
}

.specifications__list li:not(:last-child)
{
    margin-bottom: 1em;
}

.cold-block
{
    background: url('/img/bg_cold.jpg') no-repeat center;
    background-size: cover;
}

.cold-block__c
{
    font-size: 72px;
    font-weight: bold;
    line-height: 1;

    text-align: center;

    color: #59cdf8;
}

.cold-block__title
{
    margin-bottom: .5em;
}

.cold-block__subtitle
{
    font-weight: bold;

    margin-bottom: 1em;
}

.tech-card
{
    overflow: hidden;

    transition: .4s;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .25);
}

.tech-card__img
{
    width: 100%;
}

.tech-card__title
{
    font-size: 16px;

    margin: 0;
}

.tech-card__description
{
    margin-top: 1em;
}

.prod-xs
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.prod-xs__cover
{
    position: relative;

    flex-shrink: 0;
}

.prod-xs__img
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.prod-xs__info
{
    padding-left: 10px;

    flex-grow: 1;
}

.cnt-list__item
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
}

.cnt-list__item:not(:last-child)
{
    margin-bottom: 5px;
}

.cnt-list__label
{
    max-width: 80px;
    padding-right: 10px;

    color: #a6a6a5;

    flex-basis: 80px;
    flex-shrink: 0;
}

.cnt-list__value
{
    flex-grow: 1;
}

.message
{
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.message__cover svg
{
    width: 64px !important;
    height: 64px !important;
}

.message__cover svg path
{
    fill: #a6a6a5;
}

.message__title
{
    font-size: 20px;
    font-weight: bold;
    line-height: 1;

    margin-bottom: 5px;
}

.breadcrumbs
{
    font-size: 12px;

    display: flex;
    overflow: hidden;

    margin: 0;
    padding: 0;

    list-style: none;

    justify-content: flex-start;
    align-items: center;
}

.breadcrumbs__item
{
    position: relative;

    flex-shrink: 0;
}

.breadcrumbs__item:not(:last-child)
{
    margin-right: 10px;
    padding-right: 10px;
}

.breadcrumbs__item:not(:last-child):after
{
    position: absolute;
    top: 50%;
    right: -2px;

    width: 0;
    height: 0;

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

    border-width: 4px 0 4px 4px;
    border-style: solid;
    border-color: transparent transparent transparent #a6a6a5;
}

.breadcrumbs__link
{
    display: inline-block;

    transition: .4s;
    vertical-align: middle;
    text-decoration: none;

    color: #4d4d4c;
}

.breadcrumbs__link--home
{
    overflow: hidden;

    width: 18px;
    height: 18px;

    text-indent: -9999px;

    opacity: .65;
    background-image: url('/img/icon_home-black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.breadcrumbs__link--home:hover
{
    opacity: 1;
}

.breadcrumbs__current
{
    color: #a6a6a5;
}

.title
{
    font-weight: bold;

    margin-top: 0;
    margin-bottom: .2em;
}

.subtitle
{
    font-weight: bold;
}

.description p,
.description ul
{
    margin: 0;
}

.description p:not(:last-child),
.description ul:not(:last-child)
{
    margin-bottom: .5em;
}

.description ul
{
    padding-left: 30px;
}

.description h3
{
    margin-bottom: 0;

    color: #a6a6a5;
}

.careers-list
{
    margin: 0;
    padding: 0;

    list-style: none;
}

.careers-list__item
{
    margin: 10px 0;
}

.careers-list__link
{
    text-decoration: none;

    border-bottom: 1px dashed;
}

.m-address__label
{
    color: #a6a6a5;
}

.search-box
{
    display: inline-block;
}

.search-box__item
{
    position: relative;
}

.search-box__input
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;

    height: 36px;
    padding: 5px 40px 5px 20px;

    transition: .4s;

    border: 1px solid #e5e5e5;
    border-radius: 18px;
}

.search-box__input::-webkit-input-placeholder
{
    color: #a6a6a5;
}

.search-box__input::-moz-placeholder
{
    color: #a6a6a5;
}

.search-box__input::-ms-input-placeholder
{
    color: #a6a6a5;
}

.search-box__input:focus
{
    border-color: #008895;
    outline: none;
}

.search-box__btn
{
    position: absolute;
    top: 50%;
    right: 0;

    padding: 0 8px;

    cursor: pointer;
    transition: .4s;
    transform: translateY(-50%);

    color: #a6a6a5;
    border: 0 none;
    background-color: transparent;
}

.search-box__btn:hover
{
    color: #008895;
}

.pager__list
{
    display: flex;

    margin: 0 -5px;
    padding: 0;

    list-style: none;

    justify-content: flex-start;
    align-items: center;
}

.pager__item
{
    padding-right: 5px;
    padding-left: 5px;
}

.pager__link
{
    line-height: 24px;

    position: relative;

    display: inline-block;

    width: 24px;
    height: 24px;

    text-align: center;
    vertical-align: middle;
    text-decoration: none;

    color: #a6a6a5;
    border-bottom: 2px solid #e5e5e5;
}

.pager__link.active
{
    color: #4d4d4c;
    border-color: #a6a6a5;
}

.pager__link--prev,
.pager__link--next
{
    overflow: hidden;

    text-indent: -9999px;

    border-bottom: 0 none;
}

.pager__link--prev:hover:after,
.pager__link--next:hover:after
{
    opacity: .75;
}

.pager__link--prev:after,
.pager__link--next:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 24px;
    height: 24px;

    content: '';
    transition: .4s;
    transform: translateX(-50%) translateY(-50%);

    opacity: .5;
    background: url('/img/icon_chevron-right-black.svg') no-repeat center;
    background-size: contain;
}

.pager__link--prev:after
{
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.contacts__head
{
    margin-bottom: 1.6em;
}

.contacts__list
{
    margin: 0;
    padding: 0;

    list-style: none;

    border: 1px solid #e5e5e5;
}

.contacts__item
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.contacts__item:not(:last-child)
{
    border-bottom: 1px solid #e5e5e5;
}

.contacts__item:nth-child(odd)
{
    background-color: #f2f2f2;
}

.contacts__city,
.contacts__phone
{
    padding: 6px 12px;

    flex: 1 1 0;
}

.contacts__city
{
    border-right: 1px solid #e5e5e5;
}

.contacts__phone
{
    font-weight: bold;

    flex-grow: 1;
}

.contacts__phone a
{
    text-decoration: none;

    color: #4d4d4c;
}

.contacts__phone a:hover
{
    color: #008895;
}

.vacancy-wrap
{
    max-width: 970px;
    margin: 0 auto;
}

.vacancy-form__head
{
    margin-bottom: 1.6em;
}

.vacancy-form__form .form-control
{
    max-width: none;
}

.vacancy-form__form .form-submit
{
    text-align: center;
}

.border-top
{
    margin-top: 1.5em !important;
    padding-top: 1.5em;

    border-top: 1px solid #008895;
}

.docs__title
{
    font-size: 16px;
    font-weight: bold;

    margin-bottom: .5em;

    color: #a6a6a5;
}

.news-list__item:not(:last-child)
{
    border-bottom: 1px solid #e5e5e5;
}

.news-teas__main
{
    display: block;

    text-decoration: none;

    color: #4d4d4c;
}

.news-teas__main:hover
{
    color: #4d4d4c;
}

.news-teas__title
{
    font-size: 16px;

    margin: 0 0 .5em;
}

.news-teas__bottom
{
    display: flex;

    margin-top: .5em;

    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.news-teas__date
{
    margin-right: 15px;
}

.news-teas__author
{
    font-size: 12px;
}

.news-card
{
    overflow: hidden;

    background-color: #fff;
}

.news-card hr
{
    height: 1px;

    border: 0 none;
    background-color: #e5e5e5;
}

.news-card__data
{
    display: flex;

    margin-top: 15px;
    margin-bottom: 15px;

    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.news-card__date
{
    margin-right: 15px;
}

.news-card__cover
{
    margin-bottom: 15px;
}

.news-card__img
{
    width: 100%;
}

.news-last__item
{
    padding-top: 10px;
    padding-bottom: 10px;
}

.news-last__item:not(:last-child)
{
    border-bottom: 1px solid #e5e5e5;
}

.news-last__bottom
{
    margin-top: 10px;
}

.news-micro__title
{
    font-weight: bold;
}

.news-micro__title-link
{
    text-decoration: none;

    color: #4d4d4c;
}

.news-micro__bottom
{
    display: flex;

    margin-top: 5px;

    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.news-micro__date
{
    margin-right: 15px;
}

.date
{
    font-size: 12px;

    color: #a6a6a5;
}

.ny-message
{
    line-height: 1;

    overflow: hidden;

    text-align: right;

    color: #008895;
    border-radius: 10px;
    background-color: #fff;
    background-image: url('/img/sia_new_year_2020.png');
    background-repeat: no-repeat;
    background-position: top 50% left 0;
    background-size: contain;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    text-shadow: 0 0 5px #fff, 0 0 3px #fff, 0 0 1px #fff;
}

.feb-message
{
    line-height: 1.2;

    overflow: hidden;

    text-align: center;
    text-align: right;

    border-radius: 10px;
    background-color: #fff;
    background-image: url('/img/sia_feb_23.png');
    background-repeat: no-repeat;
    background-position: top 50% left 0;
    background-size: contain;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.mar-message
{
    line-height: 1.2;

    overflow: hidden;

    text-align: center;
    text-align: right;

    border-radius: 10px;
    background-color: #fff;
    background-image: url('/img/sia_mar_8.png');
    background-repeat: no-repeat;
    background-position: top 50% left 0;
    background-size: contain;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.cz-message
{
    padding: 10px;

    border-radius: 10px;
    background-color: #eae60e;
}

.cz-message__wrap
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.cz-message__visual
{
    margin-right: 16px;

    flex-shrink: 0;
    flex-basis: 120px;
}

.cz-message__info
{
    font-size: 16px;
    font-weight: bold;
}

.i-title
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.i-title__icon
{
    margin-right: 8px;
}

.i-title__icon svg path
{
    fill: #4d4d4c;
}

.list--grid
{
    display: flex;

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

    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.list__item:not(:last-child)
{
    margin-bottom: 30px;
}

.list__item--col
{
    padding-right: 15px;
    padding-left: 15px;

    flex-shrink: 0;
}

.list__item--col:not(:last-child)
{
    margin-bottom: 0;
}

.prod-teas
{
    overflow: hidden;

    border-radius: 10px;
    background-color: #f7f7f7;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .25);
}

.prod-teas--promoted
{
    position: relative;
}

.prod-teas--promoted::before,
.prod-teas--promoted::after
{
    position: absolute;

    content: '';
}

.prod-teas--promoted::before
{
    top: 0;
    left: 0;

    width: 0;
    height: 0;

    border-width: 80px 80px 0 0;
    border-style: solid;
    border-color: #fc4b1c transparent transparent transparent;
}

.prod-teas--promoted::after
{
    top: 8px;
    left: 8px;

    width: 32px;
    height: 32px;

    background-image: url('/img/icon_thumb-up-white.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}

.prod-teas__visual
{
    display: flex;
    flex-direction: column;

    background-color: #fff;

    justify-content: center;
    align-items: center;
}

.prod-teas__cover
{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.prod-teas__img
{
    display: block;

    max-height: 100%;
    margin-right: auto;
    margin-left: auto;

    -o-object-fit: contain;
       object-fit: contain;
}

.prod-teas__title
{
    font-weight: bold;
    line-height: 1.2;
}

.prod-teas__item
{
    margin-top: 2px;
}

.prod-teas__item--code
{
    margin-bottom: 10px;
}

.prod-teas__item span
{
    color: #a6a6a5;
}

.realty-teas
{
    overflow: hidden;

    transition: .4s;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .25);
}

.realty-teas:hover
{
    box-shadow: 2px 2px 24px rgba(0, 0, 0, .25);
}

.realty-teas:hover .realty-teas__cover:before,
.realty-teas:hover .realty-teas__cover:after
{
    opacity: .75;
}

.realty-teas__link
{
    display: block;

    text-decoration: none;

    color: #4d4d4c;
}

.realty-teas__link:hover
{
    color: #4d4d4c;
}

.realty-teas__link--extra
{
    display: none;
    visibility: hidden;
}

.realty-teas__cover
{
    position: relative;

    overflow: hidden;

    height: 0;
    padding-bottom: 55%;
}

.realty-teas__cover:before,
.realty-teas__cover:after
{
    position: absolute;

    content: '';
    transition: .4s;

    opacity: 0;
}

.realty-teas__cover:before
{
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-color: rgba(0, 0, 0, .75);
}

.realty-teas__cover:after
{
    z-index: 2;
    top: 50%;
    left: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%) translateX(-50%);

    background: url('/img/icon_image-multiple-white.svg') no-repeat center;
    background-size: contain;
}

.realty-teas__cover-img
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;
    margin: auto;

    transition: .4s;

    -o-object-fit: cover;
       object-fit: cover;
}

.realty-teas__info
{
    padding: 15px;
}

.realty-teas__title
{
    font-size: 16px;

    margin: 0;
    padding: 10px 15px;

    text-align: center;

    background-color: #f7f7f7;
}

.realty-teas__item
{
    font-size: 12px;
}

.realty-teas__item:not(:last-child)
{
    margin-bottom: .4em;
}

.realty-teas__label
{
    color: #a6a6a5;
}

.sout-item__title
{
    font-size: 18px;
    font-weight: bold;

    margin-top: 2em;
    margin-bottom: 1em;
}

.tbl-wrap
{
    display: block;
    overflow-x: auto;
    overflow-y: hidden;

    width: 100%;
    min-height: .01%;
    margin-bottom: .5em;

    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.tbl
{
    width: 100%;
    max-width: 100%;

    border-collapse: collapse;

    border: 1px solid #e5e5e5;
    background-color: #fff;
}

.tbl td,
.tbl th
{
    line-height: 1.2;

    -webkit-hyphens: auto;
            hyphens: auto;

    border: 1px solid #e5e5e5;

        -ms-hyphens: auto;
}

.tbl td.mw-100,
.tbl th.mw-100
{
    min-width: 100px;
}

.tbl__head td,
.tbl__head th
{
    text-align: center;

    background-color: #f2f2f2;
}

.tbl__head td
{
    text-align: center;
}

.tbl__head th
{
    text-align: left;
}

.tbl__top td
{
    text-align: center;
}

.tbl__row td
{
    transition: .4s;
}

.tbl__row td:not(:first-child)
{
    text-align: center;
}

.tbl__row:hover td
{
    background-color: #f2f2f2;
}

.retro__wrap
{
    position: relative;
}

.retro__wrap:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    content: '';
    transform: translateX(-50%);

    background-color: #e5e5e5;
}

.retro__item
{
    position: relative;
}

.retro__year
{
    font-weight: bold;

    display: block;

    width: 110px;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 15px;

    text-align: center;

    color: #a6a6a5;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #fff;
}

.retro__event
{
    font-size: 12px;

    padding: 10px 15px;

    -webkit-hyphens: auto;
            hyphens: auto;

    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f2f2f2;

        -ms-hyphens: auto;
}

.team-card
{
    display: block;
    overflow: hidden;

    padding: 15px;

    text-decoration: none;

    color: #4d4d4c;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.team-card__top
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.team-card__cover
{
    max-width: 75px;
    margin-right: 15px;

    flex-basis: 75px;
    flex-shrink: 0;
}

.team-card__photo
{
    border-radius: 50%;
}

.team-card__name
{
    font-weight: bold;
}

.team-card__description
{
    font-size: 12px;

    transition: .4s;
    -webkit-hyphens: auto;
            hyphens: auto;

    color: #a6a6a5;

        -ms-hyphens: auto;
}

.team-card__description:hover
{
    color: #4d4d4c;
}

.persons__list
{
    display: flex;

    margin: -15px;
    padding: 0;

    list-style: none;

    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.persons__break
{
    flex-basis: 100%;
}

.persons__item
{
    display: flex;
    flex-direction: column;

    padding: 15px;

    flex-grow: 1;
    justify-content: flex-start;
    align-items: stretch;
}

.persons__item:first-child
{
    margin-right: auto;
    margin-left: auto;
}

.person
{
    display: flex;
    overflow: hidden;
    flex-direction: column;

    transition: .4s;
    text-decoration: none;

    color: #4d4d4c;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);

    flex-grow: 1;
    justify-content: flex-start;
    align-items: stretch;
}

.person:hover img
{
    transform: scale(1.1);
}

.person__wrap
{
    flex-grow: 1;
}

.person__visual
{
    overflow: hidden;
}

.person__visual img
{
    transition: .4s;
}

.person__main
{
    padding: 15px;
}

.person__name
{
    font-weight: bold;

    text-transform: uppercase;
}

.person-box
{
    overflow: hidden;

    margin: 0 auto;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.person-box__visual img
{
    border-radius: 5px;
}

.person-box__name
{
    font-weight: bold;

    margin-bottom: .5em;

    text-transform: uppercase;
}

.person-box__post
{
    font-size: 16px;

    color: #a6a6a5;
}

.l-ad
{
    position: relative;

    background-color: #fff;
}

.l-ad__img
{
    width: 100%;
}

.faq__item:not(:last-child)
{
    margin-bottom: 16px;
    padding-bottom: 16px;

    border-bottom: 1px solid #e5e5e5;
}

.faq-item__header
{
    padding-top: 8px;
    padding-bottom: 8px;
}

.faq-item__question
{
    font-weight: bold;
}

.faq-item__answer
{
    padding-bottom: 8px;
}

.wbox
{
    position: relative;

    overflow: hidden;

    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    padding: 15px;

    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.wbox-team__top
{
    display: flex;

    margin-bottom: 15px;

    justify-content: flex-start;
    align-items: center;
}

.wbox-team__cover
{
    max-width: 75px;
    margin-right: 15px;

    flex-basis: 75px;
    flex-shrink: 0;
}

.wbox-team__photo
{
    border-radius: 50%;
}

.wbox-team__name
{
    font-weight: bold;
}

.wbox-team__description
{
    font-size: 12px;

    -webkit-hyphens: auto;
            hyphens: auto;

        -ms-hyphens: auto;
}

.footer
{
    margin-top: auto;
    padding: 50px 0 10px;

    color: rgba(255, 255, 255, .75);
    background-color: #4d4d4c;
}

.footer a
{
    text-decoration: none;

    color: rgba(255, 255, 255, .75);
}

.footer a:hover
{
    color: #fff;
}

.footer__col
{
    padding-bottom: 30px;
}

.footer__name
{
    font-size: 18px;
    font-weight: bold;

    margin-bottom: 1.5em;

    text-transform: uppercase;
}

.footer__mark
{
    margin: 30px 0 0;
}

.f-contacts__item
{
    position: relative;

    padding-left: 40px;
}

.f-contacts__item:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 24px;
    height: 24px;

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

    opacity: .75;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.f-contacts__item--address:before
{
    background-image: url('/img/icon_map-white.svg');
}

.f-contacts__item--phone:before
{
    background-image: url('/img/icon_phone-white.svg');
}

.f-contacts__item--email:before
{
    background-image: url('/img/icon_email-white.svg');
}

.f-contacts__item:not(:last-child)
{
    margin-bottom: 20px;
}

.regional__title
{
    font-size: 16px;
    font-weight: bold;

    position: relative;

    margin-bottom: 2em;
    padding-left: 40px;
}

.regional__title:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 20px;
    height: 20px;

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

    opacity: .75;
    background: url('/img/icon_web-white.svg') no-repeat center;
    background-size: contain;
}

.regional__list
{
    font-size: 12px;
}

.regional__nav
{
    margin-bottom: 12px;

    -moz-column-fill: auto;
         column-fill: auto;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
}

.reg-nav
{
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
}

.reg-nav__letter
{
    font-weight: bold;

    max-width: 40px;

    flex: 1 0 40px;
}

.reg-nav__list
{
    margin: 0;
    padding: 0;

    list-style: none;

    flex-grow: 1;
}

.reg-nav__link
{
    text-decoration: none;

    color: #4d4d4c;
}

.cnt-item
{
    position: relative;

    padding-left: 40px;
}

.cnt-item:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 24px;
    height: 24px;

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

    opacity: .75;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    -webkit-filter: invert(100%);
            filter: invert(100%);
}

.cnt-item--phone:before
{
    background-image: url('/img/icon_phone-white.svg');
}

.cnt-item--email:before
{
    background-image: url('/img/icon_email-white.svg');
}

.cnt-item__value a
{
    font-weight: bold;

    text-decoration: none;

    color: #4d4d4c;
}

.person-card
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
}

.person-card__visual
{
    margin-right: 15px;

    flex-shrink: 0;
}

.person-card__photo
{
    position: relative;

    overflow: hidden;

    border-radius: 50%;
    background-color: #f7f7f7;
}

.person-card__photo:before
{
    position: absolute;
    top: 50%;
    left: 50%;

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

    opacity: .15;
    background: url('/img/icon_account-dark.svg') no-repeat center;
    background-size: contain;
}

.person-card__img
{
    position: relative;

    -o-object-fit: cover;
       object-fit: cover;
}

.person-card__info
{
    flex-grow: 1;
}

.person-card__post
{
    color: #a6a6a5;
}

.person-card__name
{
    font-weight: bold;
}

.person-card__email a
{
    text-decoration: none;

    color: #4d4d4c;
}

.f-navs__item
{
    margin-bottom: 30px;
}

.f-nav__title
{
    font-size: 16px;
    font-weight: bold;

    margin-bottom: 15px;
}

.f-nav__list
{
    margin: 0;
    padding: 0;

    list-style: none;
}

.f-nav__item
{
    font-size: 12px;
}

.f-nav__item:not(:last-child)
{
    margin-bottom: 15px;
}

@media (min-width: 480px)
{
    .main-card__title,
    .main-card__description
    {
        font-size: 22px;
    }

    .prod-xs__cover
    {
        width: 60px;
        height: 60px;

        flex-basis: 60px;
    }

    .title
    {
        font-size: 22px;
    }

    .persons__item
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .wbox
    {
        padding: 30px;
    }

    .wbox-team__name
    {
        font-size: 18px;
    }

    .regional-list__subtitle
    {
        font-size: 20px;
    }

    .regional__list
    {
        -moz-column-count: 2;
             column-count: 2;
    }

    .f-navs__row
    {
        display: flex;

        justify-content: flex-start;
        align-items: stretch;
    }

    .f-navs__col
    {
        max-width: 50%;

        flex: 1 1 50%;
    }
}

@media (min-width: 768px)
{
    .form-row
    {
        display: flex;

        justify-content: flex-start;
        align-items: center;
    }

    .form-row__main
    {
        max-width: 380px;
        margin-right: 20px;

        flex: 0 0 380px;
    }

    .doc-link
    {
        padding: 10px 0 10px 34px;
    }

    .doc-link:before
    {
        width: 28px;
        height: 28px;
    }

    .container
    {
        width: 750px;
    }

    .main-card
    {
        overflow: hidden;

        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    }

    .main-card__info
    {
        padding: 25px;
    }

    .main-card__extra
    {
        padding: 10px 25px;
    }

    .main-card__title,
    .main-card__description
    {
        font-size: 24px;
    }

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

    .block--last
    {
        padding-bottom: 0;
    }

    .block__title
    {
        font-size: 28px;
    }

    .main__container
    {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .main__row
    {
        display: flex;

        margin-right: -10px;
        margin-bottom: -20px;
        margin-left: -10px;

        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .main__col
    {
        display: flex;
        flex-direction: column;

        max-width: 50%;
        padding-right: 10px;
        padding-bottom: 20px;
        padding-left: 10px;

        flex-grow: 1;
        flex-basis: 50%;
    }

    .main__extra
    {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .main__bottom
    {
        margin-top: 40px;
    }

    .box__head
    {
        padding: 20px 30px;
    }

    .box__title
    {
        font-size: 28px;
    }

    .box__body,
    .box__block
    {
        padding: 30px;
    }

    .enter__col
    {
        max-width: 50%;
        padding: 15px;

        flex-basis: 50%;
    }

    .enter__col:first-child
    {
        border-right: 1px solid #e5e5e5;
    }

    .help-box__main,
    .help-box__body,
    .help-box__bottom,
    .help-box__visual,
    .help-box__info
    {
        padding: 20px;
    }

    .help-box__list
    {
        margin: -20px;
    }

    .help-box__list .advantages__item:not(:last-child):after
    {
        width: calc(100% - 20px - 34px);
    }

    .help-box__item
    {
        padding: 5px 20px;
    }

    .help-box__item--vp
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .advantage-item
    {
        padding-left: 20px;
    }

    .advantage-item__label
    {
        padding-right: 20px;
    }

    .specifications__title
    {
        font-size: 20px;
    }

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

    .cold-block__wrap
    {
        display: flex;

        justify-content: flex-start;
        align-items: center;
    }

    .cold-block__visual
    {
        max-width: 140px;

        flex-shrink: 0;
        flex-basis: 140px;
    }

    .cold-block__title
    {
        font-size: 24px;
    }

    .tech-card__main
    {
        padding: 20px;
    }

    .tech-card__title
    {
        font-size: 18px;
    }

    .main-head
    {
        display: flex;

        justify-content: space-between;
        align-items: flex-end;
    }

    .main-head__ctrl
    {
        margin-left: auto;
    }

    .message
    {
        padding: 30px;
    }

    .message__wrap
    {
        display: flex;

        justify-content: flex-start;
        align-items: center;
    }

    .message__cover
    {
        margin-right: 15px;
    }

    .title
    {
        font-size: 24px;
    }

    .subtitle
    {
        font-size: 18px;
    }

    .news-list__item
    {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .news-card
    {
        padding: 20px;
    }

    .news-card hr
    {
        margin-right: -20px;
        margin-left: -20px;
    }

    .news-card__photo
    {
        display: block;
        float: left;

        margin-right: 20px;
        margin-bottom: 10px;
    }

    .news-card__cover
    {
        margin-right: -20px;
        margin-left: -20px;
    }

    .ny-message
    {
        font-size: 32px;

        padding: 20px 20px;
    }

    .feb-message
    {
        font-size: 28px;

        padding: 15px 30px 15px 40%;
    }

    .mar-message
    {
        font-size: 28px;

        padding: 15px 30px 15px 40%;
    }

    .prod-teas
    {
        display: flex;

        justify-content: flex-start;
        align-items: stretch;
    }

    .prod-teas__visual
    {
        max-width: 25%;

        border-right: 1px solid #e5e5e5;

        flex: 1 0 25%;
    }

    .prod-teas__cover
    {
        margin-right: -5px;
        margin-left: -5px;
    }

    .prod-teas__info
    {
        max-width: 75%;

        flex: 1 0 75%;
    }

    .realty-teas
    {
        flex-grow: 1;
    }

    .realty-teas__title
    {
        font-size: 18px;
    }

    .team__list
    {
        display: flex;

        margin: -15px;

        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .team__item
    {
        max-width: 50%;
        padding: 15px;

        flex-grow: 1;
        flex-basis: 50%;
    }

    .team__top
    {
        margin-bottom: 30px;
    }

    .team__main
    {
        max-width: 50%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 10px;
        padding-left: 10px;
    }

    .persons__item
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .person-box
    {
        max-width: 960px;
        padding: 30px;
    }

    .person-box__wrap
    {
        display: flex;

        justify-content: flex-start;
        align-items: stretch;
    }

    .person-box__visual,
    .person-box__main
    {
        flex-grow: 1;
    }

    .person-box__visual
    {
        max-width: 50%;
        padding-right: 30px;

        flex-shrink: 0;
        flex-basis: 50%;
    }

    .person-box__name
    {
        font-size: 20px;
    }

    .l-ad
    {
        overflow: hidden;

        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    }

    .footer__row
    {
        display: flex;

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

        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .footer__col
    {
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px;

        flex-grow: 1;
        flex-basis: 50%;
    }

    .regional-list__subtitle
    {
        font-size: 22px;
    }
}

@media (min-width: 992px)
{
    .container
    {
        width: 970px;
    }

    .header__logo
    {
        margin-right: 10px;
    }

    .main-nav__btn
    {
        display: none;
    }

    .main-nav__menu
    {
        display: block;
    }

    .main-menu
    {
        display: flex;

        justify-content: flex-start;
        align-items: center;
    }

    .main-menu__item .sub-menu
    {
        position: absolute;

        visibility: hidden;

        transition: .3s linear;
        transform: rotateX(-90deg);
        transform-origin: 0 0;

        opacity: 0;
    }

    .main-menu__item:hover > .sub-menu
    {
        visibility: visible;

        transform: rotateX(0deg);

        opacity: 1;
    }

    .main-menu__link i
    {
        font-size: 20px;

        opacity: .5;
    }

    .sub-menu
    {
        padding: 15px 0;
    }

    .sub-menu__link
    {
        padding: 4px 30px;
    }

    .main-card__info
    {
        padding: 30px;
    }

    .main-card__extra
    {
        padding: 15px 30px;
    }

    .main-card__title,
    .main-card__description
    {
        font-size: 26px;
    }

    .main
    {
        margin-top: 78px;
    }

    .main__body
    {
        margin-top: 30px;
    }

    .help-box__title
    {
        font-size: 24px;
    }

    .title
    {
        font-size: 26px;
    }

    .subtitle
    {
        font-size: 20px;
    }

    .description
    {
        font-size: 18px;
    }

    .description h3
    {
        font-size: 16px;
    }

    .description--sm
    {
        font-size: 16px;
    }

    .description--xs
    {
        font-size: 14px;
    }

    .page__block
    {
        margin-top: 60px;
    }

    .contacts__item
    {
        font-size: 16px;
    }

    .news-card
    {
        border-radius: 10px;
        box-shadow: 1px 1px 4px rgba(0, 0, 0, .25);
    }

    .feb-message
    {
        font-size: 36px;
    }

    .mar-message
    {
        font-size: 36px;
    }

    .sout-item
    {
        margin-bottom: 50px;
    }

    .tbl
    {
        font-size: 12px;
    }

    .tbl td,
    .tbl th
    {
        padding: 8px;
    }

    .retro__item
    {
        margin-bottom: 30px;
    }

    .retro__event
    {
        position: absolute;
        top: 0;

        max-width: calc(50% - 70px);
    }

    .retro__event:before
    {
        position: absolute;
        top: 8px;

        width: 12px;
        height: 12px;

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

        border-style: solid;
        border-color: #e5e5e5;
        background-color: #f2f2f2;
    }

    .retro__event--right
    {
        left: 50%;

        margin-left: 70px;
    }

    .retro__event--right:before
    {
        left: -7px;

        border-width: 0 0 1px 1px;
    }

    .retro__event--left
    {
        right: 50%;

        margin-right: 70px;
    }

    .retro__event--left:before
    {
        right: -7px;

        border-width: 1px 1px 0 0;
    }

    .team__item
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .team__main
    {
        max-width: 33.33333%;
    }

    .persons__item
    {
        max-width: 25%;

        flex-basis: 25%;
    }

    .person-box
    {
        margin-bottom: 30px;
    }

    .person-box__visual
    {
        max-width: 30%;

        flex-basis: 30%;
    }

    .person-box__name
    {
        font-size: 24px;
    }

    .faq-item__question
    {
        font-size: 20px;
    }

    .faq-item__answer
    {
        font-size: 16px;
    }

    .regional-list__top
    {
        margin-bottom: 30px;
    }

    .regional-list__subtitle
    {
        font-size: 24px;
    }

    .regional-list__description
    {
        margin-top: 30px;
    }

    .regional__list--third
    {
        font-size: 14px;
        line-height: 2;

        -moz-column-count: 3;
             column-count: 3;
    }
}

@media (min-width: 1200px)
{
    .btn--pa
    {
        padding: 10px 20px 10px 60px;
    }

    .btn--pa:before
    {
        left: 10px;

        width: 24px;
        height: 24px;
    }

    .btn--pa:after
    {
        left: 44px;
    }

    .container
    {
        width: 1170px;
    }

    .header__logo
    {
        margin-right: 30px;
    }

    .main-menu
    {
        margin-right: -5px;
        margin-left: -5px;
    }

    .main-menu__item
    {
        padding-right: 5px;
        padding-left: 5px;
    }

    .main-menu__link
    {
        padding: 6px 12px;
    }

    .main-card__info
    {
        padding: 35px;
    }

    .main-card__extra
    {
        padding: 20px 35px;
    }

    .main-card__title,
    .main-card__description
    {
        font-size: 28px;
    }

    .main__row
    {
        margin-right: -15px;
        margin-bottom: -30px;
        margin-left: -15px;
    }

    .main__col
    {
        max-width: 33.33333%;
        padding-right: 15px;
        padding-bottom: 30px;
        padding-left: 15px;

        flex-basis: 33.33333%;
    }

    .main__extra
    {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .main__bottom
    {
        margin-top: 60px;
    }

    .col--third
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .col--2third
    {
        max-width: 66.66666%;

        flex-basis: 66.66666%;
    }

    .col--half
    {
        max-width: 50%;

        flex-basis: 50%;
    }

    .advantages__intro
    {
        min-height: 4.2em;
    }

    .specifications__title
    {
        min-height: 2.4em;
    }

    .cold-block__visual
    {
        max-width: 220px;

        flex-basis: 220px;
    }

    .title
    {
        font-size: 28px;
    }

    .subtitle
    {
        font-size: 22px;
    }

    .page__grid
    {
        display: flex;

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

        justify-content: flex-start;
        align-items: stretch;
    }

    .page__main,
    .page__side
    {
        padding-right: 15px;
        padding-left: 15px;

        flex-grow: 1;
    }

    .page__side
    {
        max-width: 33.33333%;

        flex-basis: 33.33333%;
    }

    .page__main
    {
        max-width: 66.66666%;

        flex-basis: 66.66666%;
    }

    .page__main--order
    {
        order: -1;
    }

    .ny-message
    {
        font-size: 48px;

        padding: 30px 25px;
    }

    .feb-message
    {
        font-size: 48px;
    }

    .mar-message
    {
        font-size: 48px;
    }

    .team-card__name
    {
        font-size: 18px;
    }

    .person__name
    {
        font-size: 16px;
    }

    .wbox-team__name
    {
        font-size: 20px;
    }

    .wbox-team__post
    {
        font-size: 16px;
    }

    .footer__col
    {
        max-width: 50%;

        flex-basis: 33.33333%;
    }

    .regional-list__subtitle
    {
        font-size: 26px;
    }
}

@media (min-width: 1500px)
{
    .icon-link__icon--lg
    {
        margin-right: 30px;
    }

    .container
    {
        width: 1470px;
    }

    .help-box__main,
    .help-box__body,
    .help-box__bottom,
    .help-box__visual,
    .help-box__info
    {
        padding: 25px;
    }

    .help-box__list
    {
        margin: -25px;
    }

    .help-box__list .advantages__item:not(:last-child):after
    {
        width: calc(100% - 25px - 34px);
    }

    .help-box__item
    {
        padding: 5px 25px;
    }

    .help-box__item--vp
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .help-box__title
    {
        font-size: 26px;
    }

    .help-box__visual
    {
        max-width: 120px;

        flex-basis: 120px;
    }

    .help-box__cover svg
    {
        width: 56px !important;
        height: 56px !important;
    }

    .timetable__item
    {
        margin-top: 8px;
    }

    .timetable__day
    {
        max-width: 140px;

        flex-basis: 140px;
    }

    .advantage-item
    {
        padding-left: 25px;
    }

    .advantage-item__label
    {
        padding-right: 25px;
    }

    .tech-card__main
    {
        padding: 25px;
    }

    .news-card
    {
        padding: 25px;
    }

    .news-card hr
    {
        margin-right: -25px;
        margin-left: -25px;
    }

    .news-card__cover
    {
        margin-right: -25px;
        margin-left: -25px;
    }

    .ny-message
    {
        font-size: 54px;
    }

    .feb-message
    {
        font-size: 52px;
    }

    .mar-message
    {
        font-size: 52px;
    }

    .prod-teas__visual,
    .prod-teas__info
    {
        padding: 20px;
    }

    .prod-teas__cover
    {
        width: 205px;
        height: 205px;
    }

    .prod-teas__title
    {
        font-size: 24px;
    }

    .person-box__name
    {
        font-size: 28px;
    }

    .person-card
    {
        padding: 15px 0;
    }

    .person-card__photo
    {
        width: 90px;
        height: 90px;
    }

    .person-card__photo:before
    {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 1499px)
{
    .icon-link__icon--lg
    {
        margin-right: 15px;
    }

    .help-box__visual
    {
        max-width: 90px;

        flex-basis: 90px;
    }

    .help-box__cover svg
    {
        width: 48px !important;
        height: 48px !important;
    }

    .timetable__item
    {
        margin-top: 4px;
    }

    .timetable__day
    {
        max-width: 120px;

        flex-basis: 120px;
    }

    .prod-teas__visual,
    .prod-teas__info
    {
        padding: 15px;
    }

    .prod-teas__cover
    {
        width: 165px;
        height: 165px;
    }

    .prod-teas__title
    {
        font-size: 20px;
    }

    .person-card
    {
        padding: 10px 0;
    }

    .person-card__photo
    {
        width: 70px;
        height: 70px;
    }

    .person-card__photo:before
    {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 1199px)
{
    .btn--pa
    {
        padding: 8px 12px 8px 48px;
    }

    .btn--pa:before
    {
        left: 8px;

        width: 20px;
        height: 20px;
    }

    .btn--pa:after
    {
        left: 36px;
    }

    .main-menu__link
    {
        padding: 4px 8px;
    }

    .page__side
    {
        margin-top: 30px;
    }

    .page__side--order
    {
        margin-top: 0;
    }

    .page__main--order
    {
        margin-top: 30px;
    }

    .team-card__name
    {
        font-size: 16px;
    }
}

@media (max-width: 991px)
{
    .header__logo
    {
        margin-right: 30px;
    }

    .main-nav__menu
    {
        position: absolute;

        display: none;
    }

    .main-nav__menu.open
    {
        z-index: 5;
        top: calc(100% + 15px);
        right: -15px;

        display: block;

        padding: 15px 30px;

        background-color: #fff;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
    }

    .main-menu__item
    {
        margin-bottom: 5px;
    }

    .main-menu__link i
    {
        display: none;
    }

    .sub-menu
    {
        padding: 0;
    }

    .sub-menu__link
    {
        padding: 2px 15px;
    }

    .main
    {
        margin-top: 72px;
    }

    .description
    {
        font-size: 16px;
    }

    .description h3
    {
        font-size: 14px;
    }

    .description--sm
    {
        font-size: 14px;
    }

    .description--xs
    {
        font-size: 12px;
    }

    .page__block
    {
        margin-top: 40px;
    }

    .news-card
    {
        margin-top: -20px;
        margin-right: -15px;
        margin-left: -15px;
    }

    .prod-teas__title
    {
        font-size: 18px;
    }

    .sout-item
    {
        margin-bottom: 25px;
    }

    .tbl
    {
        font-size: 10px;
    }

    .tbl td,
    .tbl th
    {
        padding: 4px;
    }

    .retro__item
    {
        margin-bottom: 20px;
    }

    .retro__year
    {
        position: relative;
    }

    .retro__year:after
    {
        position: absolute;
        top: 100%;
        left: 50%;

        width: 1px;
        height: 10px;
        margin-top: 1px;

        content: '';
        transform: translateX(-50%);

        background: #e5e5e5;
    }

    .retro__event
    {
        margin-top: 10px;
    }

    .faq-item__question
    {
        font-size: 18px;
    }

    .regional-list__top
    {
        margin-bottom: 20px;
    }

    .regional-list__description
    {
        margin-top: 20px;
    }
}

@media (max-width: 767px)
{
    .form-row__extra
    {
        margin-top: 5px;
    }

    .doc-link
    {
        padding: 5px 0 5px 24px;
    }

    .doc-link:before
    {
        width: 20px;
        height: 20px;
    }

    .main-card
    {
        margin-right: -15px;
        margin-left: -15px;
    }

    .main-card__info
    {
        padding: 15px 15px 20px;
    }

    .main-card__extra
    {
        font-size: 12px;

        padding: 5px 15px;
    }

    .block
    {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .block--last
    {
        padding-bottom: 0;
    }

    .block__title
    {
        font-size: 20px;
    }

    .main__container
    {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main__head
    {
        text-align: center;
    }

    .main__extra
    {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .main__bottom
    {
        margin-top: 30px;
    }

    .box__head
    {
        padding: 10px 15px;
    }

    .box__title
    {
        font-size: 24px;
    }

    .box__body,
    .box__block
    {
        padding: 15px;
    }

    .enter__col
    {
        padding: 10px;
    }

    .enter__col:first-child
    {
        border-bottom: 1px solid #e5e5e5;
    }

    .help-box__main,
    .help-box__body,
    .help-box__bottom,
    .help-box__visual,
    .help-box__info
    {
        padding: 15px;
    }

    .help-box__list
    {
        margin: -15px;
    }

    .help-box__list .advantages__item:not(:last-child):after
    {
        width: calc(100% - 15px - 34px);
    }

    .help-box__item
    {
        padding: 5px 15px;
    }

    .help-box__item--vp
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .help-box__title
    {
        font-size: 22px;
    }

    .advantage-item
    {
        padding-left: 15px;
    }

    .advantage-item__label
    {
        padding-right: 15px;
    }

    .specifications__title
    {
        font-size: 18px;
    }

    .cold-block
    {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cold-block__visual
    {
        display: none;
    }

    .cold-block__title
    {
        font-size: 20px;
    }

    .tech-card
    {
        max-width: 480px;
        margin: 0 auto;
    }

    .tech-card__main
    {
        padding: 15px;
    }

    .message
    {
        padding: 15px;
    }

    .message__wrap
    {
        text-align: center;
    }

    .message__cover
    {
        margin-bottom: 15px;
    }

    .subtitle
    {
        font-size: 16px;
    }

    .news-list__item
    {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .news-card
    {
        padding: 15px;
    }

    .news-card hr
    {
        margin-right: -15px;
        margin-left: -15px;
    }

    .news-card__title
    {
        font-size: 24px;
    }

    .news-card__cover
    {
        margin-right: -15px;
        margin-left: -15px;
    }

    .ny-message
    {
        font-size: 20px;

        padding: 15px 15px;
    }

    .feb-message
    {
        font-size: 18px;

        padding: 10px;
    }

    .mar-message
    {
        font-size: 18px;

        padding: 10px;
    }

    .prod-teas__visual
    {
        border-bottom: 1px solid #e5e5e5;
    }

    .prod-teas__cover
    {
        margin-top: -5px;
        margin-bottom: -5px;
    }

    .realty-teas
    {
        max-width: 480px;
        margin: 0 auto;
    }

    .team__item
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .team__top
    {
        margin-bottom: 10px;
    }

    .person-box
    {
        max-width: 480px;
        padding: 15px;
    }

    .person-box__visual
    {
        padding-bottom: 15px;
    }

    .person-box__name
    {
        font-size: 18px;
    }

    .l-ad
    {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (max-width: 479px)
{
    .main-card__title,
    .main-card__description
    {
        font-size: 20px;
    }

    .help-box__title
    {
        font-size: 20px;
    }

    .help-box__date
    {
        font-size: 12px;
    }

    .help-box__visual
    {
        max-width: 60px;

        flex-basis: 60px;
    }

    .help-box__cover svg
    {
        width: 38px !important;
        height: 38px !important;
    }

    .timetable__item
    {
        font-size: 12px;
    }

    .prod-xs__cover
    {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .prod-xs__info
    {
        font-size: 12px;
    }

    .title
    {
        font-size: 20px;
    }

    .wbox
    {
        padding: 15px;
    }

    .wbox-team__name
    {
        font-size: 16px;
    }

    .regional-list__subtitle
    {
        font-size: 18px;
    }

    .person-card__photo
    {
        width: 50px;
        height: 50px;
    }

    .person-card__info
    {
        font-size: 12px;
    }
}

/*# sourceMappingURL=sourcemaps/main.css.map */

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */

/* Document
       ========================================================================== */

/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
       ========================================================================== */

/**
     * Remove the margin in all browsers (opinionated).
     */

body {
  margin: 0;
}

/**
     * Add the correct display in IE 9-.
     */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */

h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */

figure {
  margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */

hr {
  /* 1 */
  overflow: visible;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */

main {
  display: block;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
       ========================================================================== */

/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */

/**
     * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */

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

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */

b,
strong {
  font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */

b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */

dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */

mark {
  color: #000;
  background-color: #ff0;
}

/**
     * Add the correct font size in all browsers.
     */

small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/* Embedded content
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Remove the border on images inside links in IE 10-.
     */

img {
  border-style: none;
}

/**
     * Hide the overflow in IE.
     */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
       ========================================================================== */

/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     */

button {
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

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

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

/**
     * Show the overflow in Edge.
     */

input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */

[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */

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

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */

[type='search'] {
  /* 1 */
  outline-offset: -2px;
  -webkit-appearance: textfield;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */

::-webkit-file-upload-button {
  /* 1 */
  font: inherit;
  -webkit-appearance: button;
  /* 2 */
}

/**
     * Correct the padding in Firefox.
     */

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

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */

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

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */

textarea {
  overflow: auto;
}

/* Interactive
       ========================================================================== */

/*
     * Add the correct display in Edge, IE, and Firefox.
     */

details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */

summary {
  display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */

menu {
  display: block;
}

/* Scripting
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */

template {
  display: none;
}

/* Hidden
       ========================================================================== */

/**
     * Add the correct display in IE 10-.
     */

[hidden] {
  display: none;
}

/* Magnific Popup CSS */

.mfp-bg {
  position: fixed;
  z-index: 1042;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: .85;
  background: #000;
}

.mfp-wrap {
  position: fixed;
  z-index: 1043;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  text-align: center;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  z-index: 1045;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  vertical-align: middle;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  position: absolute;
  z-index: 1044;
  top: 50%;
  right: 8px;
  left: 8px;
  width: auto;
  margin-top: -.8em;
  text-align: center;
  color: #bdbdbd;
}

.mfp-preloader a {
  color: #bdbdbd;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  z-index: 1046;
  display: block;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  font-size: 44px;
  font-weight: 300;
  font-style: normal;
  line-height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0 0 18px 10px;
  text-align: center;
  text-decoration: none;
  opacity: .65;
  color: #fff;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #bdbdbd;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: -6px;
  width: 100%;
  padding-right: 6px;
  text-align: right;
}

.mfp-counter {
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
  color: #bdbdbd;
}

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  opacity: .65;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin-top: 35px;
  margin-left: 35px;
  content: '';
  border: medium inset transparent;
}

.mfp-arrow:after {
  top: 8px;
  border-top-width: 13px;
  border-bottom-width: 13px;
}

.mfp-arrow:before {
  opacity: .7;
  border-top-width: 21px;
  border-bottom-width: 21px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  margin-left: 31px;
  border-right: 17px solid #fff;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  margin-left: 39px;
  border-left: 17px solid #fff;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

/* Main image in popup */

img.mfp-img {
  line-height: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 40px 0 40px;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  position: absolute;
  z-index: -1;
  top: 40px;
  right: 0;
  bottom: 40px;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  content: '';
  background: #444;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

.mfp-figure small {
  font-size: 12px;
  line-height: 14px;
  display: block;
  color: #bdbdbd;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -36px;
  cursor: auto;
}

.mfp-title {
  line-height: 18px;
  padding-right: 36px;
  text-align: left;
  word-wrap: break-word;
  color: #bdbdbd;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(.75);
    transform: scale(.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-right: 6px;
    padding-left: 6px;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-right: 0;
    padding-left: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 5px;
    background: rgba(0, 0, 0, .6);
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    top: 3px;
    right: 5px;
  }

  .mfp-img-mobile .mfp-close {
    line-height: 35px;
    position: fixed;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    background: rgba(0, 0, 0, .6);
  }
}
/*# sourceMappingURL=sourcemaps/third.css.map */

/*# sourceMappingURL=style.css.map */
