/* Анимация */
@-webkit-keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}
@-webkit-keyframes fade-deep-in {
    from { visibility: visible; opacity: 0; }
    to { opacity: 1; }
}
@keyframes fade-deep-in {
    from { visibility: visible; opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes fade-deep-out {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}
@keyframes fade-deep-out {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}



/* Нормализация */

*,
*::before,
*::after {
    box-sizing: inherit;
}
html {
    height: 100%;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
}
body {
    height: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    background-color: #fff;
}
dl,
dt,
dd,
nav,
main,
aside,
figure,
footer,
header,
hgroup,
legend,
section,
address,
article,
fieldset,
figcaption {
    display: block;
}
p,
dl,
dt,
dd,
ul,
ol,
form,
legend,
figure,
address,
fieldset,
figcaption {
    margin: 0;
    padding: 0;
}
address {
    font-style: normal;
}
iframe,
object {
	max-width: 100%;
}
object {
    background: none;
    border: none;
    outline: none;
    border-radius: 0;
}
legend,
fieldset {
    min-width: 0;
}
fieldset {
    border: none;
}
legend {
    max-width: 100%;
    width: 100%;
    font: inherit;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
ul, ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}
svg {
    display: block;
    overflow: hidden;
    fill: currentColor;
}
em {
    font-style: italic;
}
b,
strong {
    font-weight: 700;
}
hr {
    height: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
label {
    word-wrap: break-word;
    word-break: break-word;
}
label[for] {
    cursor: pointer;
}
textarea {
    min-height: 100px;
    line-height: inherit;
    resize: vertical;
}
a {
    text-decoration: none;
    word-wrap: break-word;
    word-break: break-word;
    background-color: transparent;
    outline: none;
    transition: all .2s
}
a:link,
a:visited {
    color: inherit;
}
a:hover,
a:focus,
a:active {
    text-decoration: underline;
    outline: none;
}
a:hover {
    color: #27ae60;
}
a:focus,
a:active {
    color: #1e8549;
}

._theme-red a:hover {
    color: #e74c3c;
}
._theme-red a:focus,
._theme-red a:active {
    color: #d52d1a;
}



/* Заголовки */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 1em;
    line-height: 1.4;
    font-weight: 800;
    word-wrap: break-word;
    word-break: break-word
}
h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.76923em; /* 20/26 */
    font-size: 1.625em; /* 26/16 */
}
h2, .h2 {
    font-size: 1.125em; /* 18/16 */
}
h3, .h3 {
    font-size: 1em; /* 16/16 */
}
h4, h5, h6,
.h4, .h5, .h6 {
    font-size: .875em; /* 14/16 */
}
@media (min-width: 576px) {

    h1, .h1 {
        font-size: 1.875em; /* 30/16 */
    }
    h2, .h2 {
        font-size: 1.25em; /* 20/16 */
    }
    h3, .h3 {
        font-size: 1.125em; /* 18/16 */
    }
    h4, h5, h6,
    .h4, .h5, .h6 {
        font-size: 1em; /* 16/16 */
    }
}
@media (min-width: 922px) {

    h1, .h1 {
        margin-bottom: 0.55556em; /* 20/36 */
        font-size: 2.25em; /* 36/16 */
    }
    h2, .h2 {
        font-size: 1.5em; /* 24/16 */
    }
    h3, .h3 {
        font-size: 1.25em; /* 20/16 */
    }
    h4, h5, h6,
    .h4, .h5, .h6 {
        font-size: 1.125em; /* 18/16 */
    }
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
    margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
    margin-bottom: 0;
}
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
.h1:empty,
.h2:empty,
.h3:empty,
.h4:empty,
.h4:empty,
.h5:empty,
.h6:empty {
    margin-top: 0;
    margin-bottom: 0;
}


/* Типографика */

._text {
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    word-wrap: break-word;
    word-break: break-word
}
._text a {
    color: #27ae60;
}
._text a:hover,
._text a:focus,
._text a:active {
    text-decoration: underline;
    color: #27ae60;
}
._text a:active {
    color: #1e8549;
}
._theme-red ._text a:not(.button-d),
._theme-red ._text a:not(.button-d):hover,
._theme-red ._text a:not(.button-d):focus {
    color: #e74c3c;
}
._theme-red ._text a:not(.button-d):active {
    color: #d52d1a;
}
._text h1,
._text h2,
._text h3,
._text h4,
._text h5,
._text h6 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
._text h1 {
    margin-top: 0;
}
._text p,
._text ol,
._text ul,
._text pre,
._text table {
    margin-top: 0.5em;
    margin-bottom: 1em;
}
._text p:empty,
._text p:first-child,
._text ol:empty,
._text ol:first-child,
._text ul:empty,
._text ul:first-child,
._text pre:empty,
._text pre:first-child,
._text table:empty,
._text table:first-child {
    margin-top: 0;
}
._text p:empty,
._text p:last-child,
._text ol:empty,
._text ol:last-child,
._text ul:empty,
._text ul:last-child,
._text pre:empty,
._text pre:last-child,
._text table:empty,
._text table:last-child {
    margin-bottom: 0;
}
._text ol,
._text ul {
    padding-left: 1.4em;
    list-style-position: outside;
}
._text ol {
    list-style-type: decimal;
}
._text ul {
    list-style-type: disc;
}
._text ol li,
._text ul li {
    margin-bottom: 0.5em;
    list-style: inherit;
}
._text ol li:last-child,
._text ul li:last-child {
    margin-bottom: 0;
}
._text ol ul,
._text ol ol,
._text ul ol,
._text ul ul {
    margin-bottom: 0;
}
._text ol ul:first-child,
._text ol ol:first-child,
._text ul ol:first-child,
._text ul ul:first-child {
    margin-top: 0.5em;
}
._text ol ol,
._text ul ul {
    list-style: inherit;
}
._text table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid;
}
._text table thead,
._text table tbody,
._text table tfoot,
._text table tr,
._text table th,
._text table td {
    border: inherit;
}
._text table th,
._text table thead { 
    font-weight: 700;
    text-align: inherit;
}
._text table th,
._text table td {
    padding: 0.5em;
    vertical-align: top;
}
._text hr {
    box-sizing: border-box;
    height: 1px;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #444;
    background: currentColor;
    border: 0;
    overflow: visible;
}
._text img {
    vertical-align: baseline;
    border-style: none;
}
._text b,
._text strong {
    font-weight: bold;
}
._text em {
    font-style: italic;
}
._text small {
    font-size: 80%;
}
._text sub,
._text sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
._text sub {
    bottom: -0.5em;
}
._text sup {
    top: -0.5em;
}
._text pre,
._text code,
._text kbd,
._text samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 1em;
}



/* Свободные классы-помощники — Ширина */

._w1 {
    width: 100% !important;
}
._w2 {
    width: 50% !important;
}
._w3 {
    width: 33.33333% !important;
}
._w4 {
    width: 25% !important;
}
._w5 {
    width: 20% !important;
}

._w40 {
    width: 40px !important;
}
._w50 {
    width: 50px !important;
}
._w60 {
    width: 60px !important;
}
._w80 {
    width: 80px !important;
}
._w100 {
    width: 100px !important;
}
._w120 {
    width: 120px !important;
}
._w140 {
    width: 140px !important;
}
._w150 {
    width: 150px !important;
}
._w160 {
    width: 160px !important;
}
._w180 {
    width: 180px !important;
}
._w200 {
    width: 200px !important;
}
._w220 {
    width: 220px !important;
}
._w240 {
    width: 240px !important;
}
._w250 {
    width: 250px !important;
}
._w260 {
    width: 260px !important;
}
._w280 {
    width: 280px !important;
}
._w300 {
    width: 300px !important;
}
._w_auto {
    width: auto !important;
}

._mw1 {
    max-width: 100% !important;
}
._mw2 {
    max-width: 50% !important;
}
._mw3 {
    max-width: 33.33333% !important;
}
._mw4 {
    max-width: 25% !important;
}
._mw5 {
    max-width: 20% !important;
}

._mw40 {
    max-width: 40px !important;
}
._mw50 {
    max-width: 50px !important;
}
._mw60 {
    max-width: 60px !important;
}
._mw80 {
    max-width: 80px !important;
}
._mw100 {
    max-width: 100px !important;
}
.mw120 {
    max-width: 120px !important;
}
._mw140 {
    max-width: 140px !important;
}
._mw150 {
    max-width: 150px !important;
}
._mw160 {
    max-width: 160px !important;
}
._mw180 {
    max-width: 180px !important;
}
._mw200 {
    max-width: 200px !important;
}
._mw250 {
    max-width: 250px !important;
}
._mw280 {
    max-width: 280px !important;
}
._mw300 {
    max-width: 300px !important;
}



/* Свободные классы-помощники — Высота */

._h20 {
    height: 20px !important;
}
._h30 {
    height: 30px !important;
}
._h40 {
    height: 40px !important;
}
._h50 {
    height: 50px !important;
}

._mh20 {
    max-height: 20px !important;
}
._mh30 {
    max-height: 30px !important;
}
._mh40 {
    max-height: 40px !important;
}
._mh50 {
    max-height: 50px !important;
}
._mh60 {
    max-height: 60px !important;
}
._mh80 {
    max-height: 80px !important;
}
._mh90 {
    max-height: 90px !important;
}
._mh100 {
    max-height: 100px !important;
}
._mh500 {
    max-height: 500px !important;
}

._minh40 {
    min-height: 40px !important;
}
._minh100 {
    min-height: 100px !important;
}
._minh200 {
    min-height: 200px !important;
}
._minh250 {
    min-height: 250px !important;
}
._minh300 {
    min-height: 300px !important;
}



/* Свободные классы-помощники — Поля */

._ml0 {
    margin-left: 0 !important;
}
._ml5 {
    margin-left: .3125rem !important; /* 5/16 */
}
._ml10 {
    margin-left: 0.71428rem !important; /* 10/14 */
}
._ml,
._ml15 {
    margin-left: 1.07142rem !important; /* 15/14 */
}
._ml20 {
    margin-left: 1.42857rem !important; /* 20/14 */
}
._ml30 {
    margin-left: 2.14285rem !important; /* 30/14 */
}
._ml_auto {
    margin-left: auto !important;
}


._mt0 {
    margin-top: 0 !important;
}
._mt5 {
    margin-top: .3125rem !important; /* 5/16 */
}
._mt10 {
    margin-top: 0.71428rem !important; /* 10/14 */
}
._mt,
._mt15 {
    margin-top: 1.07142rem !important; /* 15/14 */
}
._mt20 {
    margin-top: 1.42857rem !important; /* 20/14 */
}
._mt30 {
    margin-top: 2.14285rem !important; /* 30/14 */
}
._mt_auto {
    margin-top: auto !important;
}


._mr0 {
    margin-right: 0 !important;
}
._mr5 {
    margin-right: .3125rem !important; /* 5/16 */
}
._mr10 {
    margin-right: 0.71428rem !important; /* 10/14 */
}
._mr,
._mr15 {
    margin-right: 1.07142rem !important; /* 15/14 */
}
._mr20 {
    margin-right: 1.42857rem !important; /* 20/14 */
}
._mr30 {
    margin-right: 2.14285rem !important; /* 30/14 */
}
._mr_auto {
    margin-right: auto !important;
}


._mb0 {
    margin-bottom: 0 !important;
}
._mb5 {
    margin-bottom: .3125rem !important; /* 5/16 */
}
._mb10 {
    margin-bottom: 0.71428rem !important; /* 10/14 */
}
._mb,
._mb15 {
    margin-bottom: 1.07142rem !important; /* 15/14 */
}
._mb20 {
    margin-bottom: 1.42857rem !important; /* 20/14 */
}
._mb30 {
    margin-bottom: 2.14285rem !important; /* 30/14 */
}
._mb_auto {
    margin-bottom: auto !important;
}



/* Свободные классы-помощники — Отступы */

._pl0 {
    padding-left: 0 !important;
}
._pl5 {
    padding-left: .3125rem !important; /* 5/16 */
}
._pl10 {
    padding-left: 0.71428rem !important; /* 10/14 */
}
._pl,
._pl15 {
    padding-left: 1.07142rem !important; /* 15/14 */
}
._pl20 {
    padding-left: 1.42857rem !important; /* 20/14 */
}
._pl30 {
    padding-left: 2.14285rem !important; /* 30/14 */
}


._pt0 {
    padding-top: 0 !important;
}
._pt5 {
    padding-top: .3125rem !important; /* 5/16 */
}
._pt10 {
    padding-top: 0.71428rem !important; /* 10/14 */
}
._pt,
._pt15 {
    padding-top: 1.07142rem!important; /* 15/14 */
}
._pt20 {
    padding-top: 1.42857rem !important; /* 20/14 */
}
._pt30 {
    padding-top: 2.14285rem !important; /* 30/14 */
}


._pr0 {
    padding-right: 0 !important;
}
._pr5 {
    padding-right: .3125rem !important; /* 5/16 */
}
._pr10 {
    padding-right: 0.71428rem !important; /* 10/14 */
}
._pr,
._pr15 {
    padding-right: 1.07142rem !important; /* 15/14 */
}
._pr20 {
    padding-right: 1.42857rem !important; /* 20/14 */
}
._pr30 {
    padding-right: 2.14285rem !important; /* 30/14 */
}


._pb0 {
    padding-bottom: 0 !important;
}
._pb5 {
    padding-bottom: .3125rem !important; /* 5/16 */
}
._pb10 {
    padding-bottom: 0.71428rem !important; /* 10/14 */
}
._pb,
._pb15 {
    padding-bottom: 1.07142rem !important; /* 15/14 */
}
._pb20 {
    padding-bottom: 1.42857rem !important; /* 20/14 */
}
._pb30 {
    padding-bottom: 2.14285rem !important; /* 30/14 */
}



/* Список */

._list > * {
    margin-bottom: 1.07142rem /* 15/14 */
}
._list > *:last-child,
._list5 > *:last-child {
    margin-bottom: 0;
}

._list5 > * {
    margin-bottom: .3125rem !important; /* 5/16 */
}



/* Ряд */

._row,
._row5 {
    display: flex;
    flex-wrap: wrap;
}
._row5 > * {
    margin-right: .3125rem !important; /* 5/16 */
}
._row > * {
    margin-right: 1.07142rem; /* 15/14 */
}
._row > *:last-child,
._row5 > *:last-child {
    margin-right: 0;
}



/* Плитка */

._tile {
    padding: 1.25rem; /* 20/16 */
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: .3125rem; /* 5/16 */
}
._bgray ._tile {
    background-color: #fff;
}



/* Граница */

._bounded:not(:last-child) {
    margin-bottom: 0;
}
._bounded:not(:first-child),
._bounded ._bounded:first-child {
    border-top: 1px solid #dfdfdf;
}
._bounded:not(:first-child),
._bounded ._bounded:first-child {
    margin-top: 1.25rem; /* 20/16 */
    padding-top: 1.25rem; /* 20/16 */
}



/* Уведомления */

._ok,
._err,
._warn,
._note,
._attent,
._unavailable {
    margin: .3125rem auto; /* 5/16 */
    padding: .3125rem 0.71428rem; /* 5/16 10/15 */
    color: #fff;
    border-radius: 0.21428em; /* 3/12 */
    overflow: hidden;
}
._ok:link,
._ok:visited,
._ok:hover,
._ok:focus,
._ok:active,
._err:link,
._err:visited,
._err:hover,
._err:focus,
._err:active,
._warn:link,
._warn:visited,
._warn:hover,
._warn:focus,
._warn:active,
._note:link,
._note:visited,
._note:hover,
._note:focus,
._note:active,
._attent:link,
._attent:visited,
._attent:hover,
._attent:focus,
._attent:active {
    color: #fff;
}
._ok a:link,
._ok a:visited,
._ok a:hover,
._ok a:focus,
._ok a:active,
._err a:link,
._err a:visited,
._err a:hover,
._err a:focus,
._err a:active,
._warn a:link,
._warn a:visited,
._warn a:hover,
._warn a:focus,
._warn a:active,
._note a:link,
._note a:visited,
._note a:hover,
._note a:focus,
._note a:active,
._attent a:link,
._attent a:visited,
._attent a:hover,
._attent a:focus,
._attent a:active {
    color: inherit;
}
._ok a,
._err a,
._warn a,
._note a,
._attent a {
    text-decoration: underline
}
._ok a:hover,
._ok a:focus,
._ok a:active,
._err a:hover,
._err a:focus,
._err a:active,
._warn a:hover,
._warn a:focus,
._warn a:active,
._note a:hover,
._note a:focus,
._note a:active,
._attent a:hover,
._attent a:focus,
._attent a:active {
    text-decoration: none;
}
._ok {
    background-color: #27ae60;
}
._err,
._warn {
    background-color: #ec7669;
}
._note {
    background-color: #2196f3;
}
._attent {
    background-color: #ffb400;
}
._unavailable {
    color: inherit;
    background-color: #dfdfdf;
}



/* Статус/Маркер */

._blocked {
    padding: .9375rem; /* 15/16 */
    background-color: #ebebeb;
    border: 1px solid #dfdfdf;
}
._noact {
    background-color: #ebebeb;
}
._isnew,
._unread,
._picked {
    padding: .9375rem; /* 15/16 */
    background-color: #fef8f6;
    border: 1px solid #fdede8 !important;
}
._bounded._isnew,
._bounded._unread,
._bounded._picked {
    padding: 1.25rem .9375rem; /* 20/16 15/16 */
}
._bounded._isnew + ._isnew,
._bounded._unread + ._bounded {
    margin-top: 0;
}
._asterisk::after {
    display: inline;
    content: '*';
    color: #f00;
}


/* Помощники */

._box {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: .9375rem; /* 15/16 */
    padding-right: .9375rem; /* 15/16 */
}
._inline {
    display: inline;
}
._block {
    display: block;
}
._iblock {
    display: inline-block;
}
._grid {
    display: grid;
}
._flex {
    display: flex;
}
._hidden {
    display: none !important;
}
:disabled,
.disabled,
._disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
._images {
    vertical-align: top;
}
._images img {
    display: inline-block;
    margin-right: .9375rem; /* 15/16 */
    margin-bottom: .9375rem; /* 15/16 */
    vertical-align: top;
    border-radius: .3125rem; /* 5/16 */
}
._attachments > * {
    display: block;
    margin-bottom: .3125rem; /* 5/16 */
}
._attachments > *:empty,
._attachments > *:last-child {
    margin-bottom: 0;
}
._attachments img {
    border-radius: .3125rem; /* 5/16 */
}
._ellipsis {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
}
._wordbreak {
    word-break: break-word;
}
._wordbreak_all {
    word-break: break-all;
}
._wordwrap {
    word-wrap: break-word;
    word-wrap: break-word;
}
._underlined {
    text-decoration: underline !important;
}
a._underline:hover,
a._underline:focus,
a._underline:active,
._underline a:hover,
._underline a:focus,
._underline a:active {
    text-decoration: underline;
}
._cover {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}


/* Подгонка */

._fit,
._fit_none,
._fit_cover,
._fit_contain {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden
}

._fit::after,
._fit_none::after,
._fit_cover::after,
._fit_contain::after {
    display: block;
    padding-bottom: 100%;
    content: '';
}
._fit img,
._fit video,
._fit iframe,
._fit canvas,
._fit_none img,
._fit_none video,
._fit_none iframe,
._fit_none canvas,
._fit_cover img,
._fit_cover video,
._fit_cover iframe,
._fit_cover canvas,
._fit_contain img,
._fit_contain video,
._fit_contain iframe,
._fit_contain canvas,
._fit__object {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: contain;
    object-fit: contain;
}
._fit_cover img,
._fit_cover video,
._fit_cover iframe,
._fit_cover canvas,
._fit_cover ._fit__object {
    -o-object-fit: cover;
    object-fit: cover;
}
._fit_contain img,
._fit_contain video,
._fit_contain iframe,
._fit_contain canvas,
._fit_contain ._fit__object {
    -o-object-fit: contain;
    object-fit: contain;
}
._fit_none img,
._fit_none video,
._fit_none iframe,
._fit_none canvas,
._fit_none ._fit__object {
    -o-object-fit: none;
    object-fit: none;
}

/* Подгонка — Форма */

._fit_rect::after,
._fit._rect::after {
    padding-bottom: 56.25%;
}
._fit_circle,
._fit._circle {
    border-radius: 50%;
}



/* Изображение-заглушка */

._dummyimage {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
    background-image: url('../../img/landing/dummyimage.svg');
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 58 58'%3E%3Cpath fill='%23dfdfdf' d='M57,6H1C0.448,6,0,6.447,0,7v44c0,0.553,0.448,1,1,1h56c0.552,0,1-0.447,1-1V7C58,6.447,57.552,6,57,6z M56,50H2V8h54V50z' /%3E%3Cpath fill='%23dfdfdf' d='M16,28.138c3.071,0,5.569-2.498,5.569-5.568C21.569,19.498,19.071,17,16,17s-5.569,2.498-5.569,5.569 C10.431,25.64,12.929,28.138,16,28.138z M16,19c1.968,0,3.569,1.602,3.569,3.569S17.968,26.138,16,26.138s-3.569-1.601-3.569-3.568 S14.032,19,16,19z'/%3E%3Cpath fill='%23dfdfdf' d='M7,46c0.234,0,0.47-0.082,0.66-0.249l16.313-14.362l10.302,10.301c0.391,0.391,1.023,0.391,1.414,0s0.391-1.023,0-1.414 l-4.807-4.807l9.181-10.054l11.261,10.323c0.407,0.373,1.04,0.345,1.413-0.062c0.373-0.407,0.346-1.04-0.062-1.413l-12-11 c-0.196-0.179-0.457-0.268-0.72-0.262c-0.265,0.012-0.515,0.129-0.694,0.325l-9.794,10.727l-4.743-4.743 c-0.374-0.373-0.972-0.392-1.368-0.044L6.339,44.249c-0.415,0.365-0.455,0.997-0.09,1.412C6.447,45.886,6.723,46,7,46z'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px 50px;
    overflow: hidden
}
._dummyimage::after {
    display: block;
    padding-bottom: 100%;
    content: '';
}
._dummyimage img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: none;
    object-fit: none;
}


._circle {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}
._bordered {
    border: 1px solid #dfdfdf;
}
._rounded {
    overflow: hidden;
    border-radius: .3125rem; /* 5/16 */
}
._scroll {
    overflow: hidden;
    overflow-y: auto
}
._scroll::-webkit-scrollbar {
    width: 4px;
    background: #dfdfdf;
    border-radius: 3px;
    transition: all;
}
._scroll::-webkit-scrollbar-thumb {
    background: #27ae60;
    border-radius: 3px;
    transition: all;
}
._scroll:hover::-webkit-scrollbar-thumb {
    background: #37d278;
}
._theme-red ._scroll::-webkit-scrollbar-thumb {
    background: #e74c3c;
}
._theme-red ._scroll:hover::-webkit-scrollbar-thumb {
    background: #ec7669;
}
._animated {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}
._ctext {
    text-align: center !important;
}



/* Свободные классы-помощники — Цвет */

._black {
    color: #000 !important;
}
._green {
    color: #27ae60 !important;
}
._gray {
    color: #c8c7c7 !important;
}
._blue {
    color: #2196f3 !important;
}
._yellow {
    color: #ffb400 !important;
}
._red {
    color: #e74c3c !important;
}



/* Свободные классы-помощники — Скругление углов */

._radius_t0,
._radius_l0,
._radius_tl0 {
    border-top-left-radius: 0 !important;
}
._radius_t0,
._radius_r0,
._radius_tr0 {
    border-top-right-radius: 0 !important;
}
._radius_b0,
._radius_l0,
._radius_bl0 {
    border-bottom-left-radius: 0 !important;
}
._radius_b0,
._radius_r0,
._radius_br0 {
    border-bottom-right-radius: 0 !important;
}



/* Поле ввода ( по умолчанию ) */

input,
select,
textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.625em .9375em; /* 10/16 15/16 */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: .3125rem; /* 5/16 */
    outline: none;
}
input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
    border-color: #c8c7c7;
}
input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity .1s;
}
input::-moz-placeholder {
    opacity: 1;
    transition: opacity .1s;
}
input:-moz-placeholder {
    opacity: 1;
    transition: opacity .1s;
}
input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity .1s;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    opacity: 0;
}
option {
    font-size: 1em;
    line-height: inherit;
    font-weight: normal;
}
.field-d {
    position: relative;
}
.field-d:empty {
    display: none;
}
.field-d:after {
    display: table;
    content: '';
    clear: both;
}
.field-d input[type='radio'],
.field-d input[type='checkbox'] {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    border: none;
    clip: rect(0,0,0,0);
    opacity: 0;
}
.field-d input[type='radio'] + label,
.field-d input[type='checkbox'] + label {
    display: inline-block;
    min-height: 18px;
    padding-top: 1px;
    padding-left: 1.5625em; /* 25/16 */
    position: relative;
    vertical-align: middle;
}
.field-d input[type='radio'] + label:hover::before,
.field-d input[type='checkbox'] + label:hover::before {
    border-color: #c8c7c7;
}
.field-d input[type='radio'] + label::before,
.field-d input[type='checkbox'] + label::before {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: #fff no-repeat center center;
    border: 1px solid #dfdfdf;
    transition: all 0.1s;
    z-index: 2;
}
.field-d input[type='checkbox'] + label::before {
    border-radius: .3125rem; /* 5/16 */
}
.field-d input[type='radio'] + label::before {
    border-radius: 50%;
}
.field-d input[type='radio']:checked + label::before,
.field-d input[type='checkbox']:checked + label::before {
    color: #e74c3c;
    border-color: currentColor;
    background-color: currentColor;
}
.field-d input[type='checkbox']:checked + label::before {
    background-image: url('../../img/landing/check.svg');
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
    background-size: 10px 10px;
}
.field-d input[type='radio']:checked + label::after {
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 5px;
    left: 5px;
    content: '';
    background: #fff;
    border-radius: 50%;
    -webkit-animation: 0.2s both zoom-in;
            animation: 0.2s both zoom-in;
    z-index: 2;
}
.infofield,
.field-d__name {
    display: block;
    margin-bottom: .3125em; /* 5/16 */
    word-wrap: break-word;
    word-break: break-word;
    font-weight: 500;
}
.field-d__title {
    font-size: 1.125rem; /* 18/16 */
}
.field-d__text,
.attachment_extensions {
    margin-top: .35714em; /* 5/14 */
    font-size: .875rem; /* 14/16 */
}
.field-d__bb,
.bbcode_toolbar {
    margin-bottom: -1px;
    padding: .3125rem; /* 5/16 */
    border: 1px solid #dfdfdf;
    border-bottom: none;
    border-radius: .3125rem .3125rem 0 0; /* 5/16 */
}
.field-d__bb img,
.bbcode_toolbar img {
    cursor: pointer;
}
.bbcode_smiles {
    margin-top: .3125rem; /* 5/16 */
    padding-top: .3125rem; /* 5/16 */
    border-top: 1px solid #dfdfdf;
}
.bbcode_toolbar + textarea {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.field-d__list > *:not(:last-child) {
    margin-bottom: .625rem; /* 10/16 */
}


/* Поле ввода - Файл */

.attach-d,
.inpimage,
.inpattachment {
    display: block;
    padding: .3125rem 0; /* 5/16 0 */
    position: relative;
    float: left;
    clear: both;
    overflow: hidden
}
.attach-d input[type='file'],
.inpimage input[type='file'],
.inpattachment input[type='file'] {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border: none;
    z-index: 2;
    cursor: pointer;
}
.attach-d input[type='file']::-webkit-file-upload-button,
.inpimage input[type='file']::-webkit-file-upload-button,
.inpattachment input[type='file']::-webkit-file-upload-button {
    cursor: pointer;
}
.attach-d input[type='file'] + label,
.inpimage input[type='file'] + label,
.inpattachment input[type='file'] + label {
    display: inline-block;
    padding-left: 1.25rem; /* 20/16 */
    vertical-align: middle;
    color: #e74c3c;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: 0 center;
    background-image: url('../../img/landing/attach.svg');
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath fill='%23e54d43' d='M97.344,482.17c-23.311,0-45.215-9.084-61.689-25.555c-34.01-34.014-34.01-89.361,0-123.371L305.343,63.543 c21.727-21.75,50.645-33.713,81.39-33.713c30.75,0,59.667,11.963,81.395,33.713c21.748,21.744,33.726,50.645,33.726,81.389 c0,30.75-11.964,59.65-33.708,81.381L255.843,438.596c-6.374,6.371-16.696,6.371-23.067,0c-6.374-6.373-6.374-16.695,0-23.07 l212.298-212.283c15.583-15.58,24.153-36.291,24.153-58.311c0-22.016-8.588-42.74-24.167-58.322 c-15.583-15.58-36.294-24.154-58.327-24.154c-22.029,0-42.74,8.574-58.323,24.154L58.725,356.311 c-21.283,21.301-21.283,55.938,0,77.234c20.645,20.617,56.589,20.617,77.233,0l181.091-181.105 c4.924-4.924,7.745-11.74,7.745-18.688c0-7.045-2.755-13.686-7.759-18.689c-10.291-10.291-27.067-10.322-37.358,0L156,338.754 c-6.37,6.375-16.697,6.375-23.067,0c-6.374-6.371-6.374-16.697,0-23.066l123.673-123.691c23.005-23.004,60.461-23.004,83.497,0 c11.169,11.166,17.317,26,17.317,41.756c0,15.547-6.308,30.762-17.3,41.754L159.029,456.615 C142.555,473.086,120.65,482.17,97.344,482.17z'/%3E%3C/svg%3E%0A");
    background-size: 15px 15px;
    cursor: pointer;
}
.attach-d:hover input[type='file'] + label,
.inpimage:hover input[type='file'] + label,
.inpattachment:hover input[type='file'] + label {
    color: #ec7669;
}
.attach-d + *,
.inpimage + *,
.inpattachment + * {
    clear: both;
}
.image_delete,
.attach-d__delete,
.delete_attachment,
.inpattachment_delete {
    display: inline-block;
    width: 1rem; /* 16/16 */
    height: 1rem; /* 16/16 */
    margin: .3125rem; /* 5/16 */
    padding: 0;
    position: relative;
    vertical-align: middle;
    font-size: 0;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center center;
    background-image: url('../../img/landing/trash.svg');
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath fill='%23000000' d='M436,60h-90V45c0-24.813-20.187-45-45-45h-90c-24.813,0-45,20.187-45,45v15H76c-24.813,0-45,20.187-45,45v30 c0,8.284,6.716,15,15,15h16.183L88.57,470.945c0.003,0.043,0.007,0.086,0.011,0.129C90.703,494.406,109.97,512,133.396,512 h245.207c23.427,0,42.693-17.594,44.815-40.926c0.004-0.043,0.008-0.086,0.011-0.129L449.817,150H466c8.284,0,15-6.716,15-15v-30 C481,80.187,460.813,60,436,60z M196,45c0-8.271,6.729-15,15-15h90c8.271,0,15,6.729,15,15v15H196V45z M393.537,468.408 c-0.729,7.753-7.142,13.592-14.934,13.592H133.396c-7.792,0-14.204-5.839-14.934-13.592L92.284,150h327.432L393.537,468.408z M451,120h-15H76H61v-15c0-8.271,6.729-15,15-15h105h150h105c8.271,0,15,6.729,15,15V120z'/%3E%3Cpath fill='%23000000' d='M256,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C271,186.716,264.284,180,256,180z'/%3E%3Cpath fill='%23000000' d='M346,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C361,186.716,354.284,180,346,180z'/%3E%3Cpath fill='%23000000' d='M166,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C181,186.716,174.284,180,166,180z'/%3E%3C/svg%3E%0A");
    background-size: 1rem 1rem; /* 16/16 */
    border: none;
    outline: none;
    border-radius: 0;
    overflow: hidden;
    transition: none;
    cursor: pointer;
    z-index: 3
}
.image_delete:hover,
.attach-d__delete:hover,
.delete_attachment:hover,
.inpattachment_delete:hover {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath fill='%23ec7669' d='M436,60h-90V45c0-24.813-20.187-45-45-45h-90c-24.813,0-45,20.187-45,45v15H76c-24.813,0-45,20.187-45,45v30 c0,8.284,6.716,15,15,15h16.183L88.57,470.945c0.003,0.043,0.007,0.086,0.011,0.129C90.703,494.406,109.97,512,133.396,512 h245.207c23.427,0,42.693-17.594,44.815-40.926c0.004-0.043,0.008-0.086,0.011-0.129L449.817,150H466c8.284,0,15-6.716,15-15v-30 C481,80.187,460.813,60,436,60z M196,45c0-8.271,6.729-15,15-15h90c8.271,0,15,6.729,15,15v15H196V45z M393.537,468.408 c-0.729,7.753-7.142,13.592-14.934,13.592H133.396c-7.792,0-14.204-5.839-14.934-13.592L92.284,150h327.432L393.537,468.408z M451,120h-15H76H61v-15c0-8.271,6.729-15,15-15h105h150h105c8.271,0,15,6.729,15,15V120z'/%3E%3Cpath fill='%23e54d43' d='M256,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C271,186.716,264.284,180,256,180z'/%3E%3Cpath fill='%23e54d43' d='M346,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C361,186.716,354.284,180,346,180z'/%3E%3Cpath fill='%23e54d43' d='M166,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C181,186.716,174.284,180,166,180z'/%3E%3C/svg%3E%0A");
}
.image_delete:focus,
.image_delete:active,
.attach-d__delete:focus,
.attach-d__delete:active,
.delete_attachment:focus,
.delete_attachment:active,
.inpattachment_delete:focus,
.inpattachment_delete:active {
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath fill='%23d52d1a' d='M436,60h-90V45c0-24.813-20.187-45-45-45h-90c-24.813,0-45,20.187-45,45v15H76c-24.813,0-45,20.187-45,45v30 c0,8.284,6.716,15,15,15h16.183L88.57,470.945c0.003,0.043,0.007,0.086,0.011,0.129C90.703,494.406,109.97,512,133.396,512 h245.207c23.427,0,42.693-17.594,44.815-40.926c0.004-0.043,0.008-0.086,0.011-0.129L449.817,150H466c8.284,0,15-6.716,15-15v-30 C481,80.187,460.813,60,436,60z M196,45c0-8.271,6.729-15,15-15h90c8.271,0,15,6.729,15,15v15H196V45z M393.537,468.408 c-0.729,7.753-7.142,13.592-14.934,13.592H133.396c-7.792,0-14.204-5.839-14.934-13.592L92.284,150h327.432L393.537,468.408z M451,120h-15H76H61v-15c0-8.271,6.729-15,15-15h105h150h105c8.271,0,15,6.729,15,15V120z'/%3E%3Cpath fill='%23e2382c' d='M256,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C271,186.716,264.284,180,256,180z'/%3E%3Cpath fill='%23e2382c' d='M346,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C361,186.716,354.284,180,346,180z'/%3E%3Cpath fill='%23e2382c' d='M166,180c-8.284,0-15,6.716-15,15v212c0,8.284,6.716,15,15,15s15-6.716,15-15V195C181,186.716,174.284,180,166,180z'/%3E%3C/svg%3E%0A");
}
.image_delete {
    margin-top: 0;
    margin-left: 0;
}
.inpimage img {
    margin-right: .3125rem; /* 5/16 */
    margin-bottom: .3125rem; /* 5/16 */
    border-radius: .3125rem; /* 5/14 */
}


/* Поле ввода в форме */

form .field-d {
    margin-bottom: .9375rem; /* 15/16 */
}
form .field-d:last-child {
    margin-bottom: 0;
}
form .field-d ~ .button-d, 
form .field-d ~ [type='reset'], 
form .field-d ~ [type='submit'] {
    margin-top: .3125rem; /* 5/16 */
}



/* Кнопка */

.button-d,
[type='reset'],
[type='submit'] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: auto;
    margin: 0;
    padding: 1em 2em; /* 16/16 32/16 */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* 16/16 */
    font-weight: 600;
    text-align: center;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    text-overflow: ellipsis;
    background: #27ae60;
    border: none;
    outline: none;
    overflow: hidden;
    border-radius: .3125rem; /* 5/16 */
    cursor: pointer;
    transition: all 0.1s;
}
._theme-red .button-d,
._theme-red [type='reset'],
._theme-red [type='submit'] {
    background: #e74c3c;
}
.button-d:hover,
[type='reset']:hover,
[type='submit']:hover,
.button-d:focus,
[type='reset']:focus,
[type='submit']:focus,
.button-d:active,
[type='reset']:active,
[type='submit']:active {
    color: #fff;
    background-color: #37d278;
    outline: none;
}
.button-d:active,
[type='reset']:active,
[type='submit']:active {
    background-color: #1e8549;
}
._theme-red .button-d:hover,
._theme-red [type='reset']:hover,
._theme-red [type='submit']:hover,
._theme-red .button-d:focus,
._theme-red [type='reset']:focus,
._theme-red [type='submit']:focus,
._theme-red .button-d:active,
._theme-red [type='reset']:active,
._theme-red [type='submit']:active {
    background-color: #ec7669;
}
._theme-red .button-d:active,
._theme-red [type='reset']:active,
._theme-red [type='submit']:active {
    background-color: #d52d1a;
}
.button-d__icon,
.button-d__name {
    margin-right: 0.5em; /* 10/20 */
}
.button-d__icon:last-child,
.button-d__name:last-child {
    margin-right: 0;
}
.button-d:link,
.button-d:visited,
.button-d:link:hover,
.button-d:visited:hover,
.button-d:link:focus,
.button-d:visited:focus,
.button-d:link:active,
.button-d:visited:active {
    color: #fff;
}
.button-d:hover,
.button-d:focus {
    background-color: #37d278;
}
.button-d:active {
    background-color: #1e8549;
}
._theme-red .button-d:hover,
._theme-red .button-d:focus {
    background-color: #ec7669;
}
._theme-red .button-d:active {
    background-color: #d52d1a;
}
.button-d_red {
    background-color: #e74c3c;
}
.button-d_red:hover,
.button-d_red:focus {
    background-color: #ec7669;
}
.button-d_red:active {
    background-color: #d52d1a;
}
/* .button-d_white,
.button-d_white:hover,
.button-d_white:focus,
.button-d_white:active {
    background-color: #fff;
} */
.button-d_white,
._theme-red .button-d_white {
    background-color: #fff;
}
.button-d_white,
.button-d_white:link,
.button-d_white:visited {
    color: #000;
}
/* .button-d_white:hover,
.button-d_white:focus,
.button-d_white:link:hover,
.button-d_white:visited:hover,
.button-d_white:link:focus,
.button-d_white:visited:focus {
    color: #37d278;
}
.button-d_white:active,
.button-d_white:link:active,
.button-d_white:visited:active {
    color: #1e8549;
} */
.button-d_wide {
    width: 100%;
}

.button-d_narrow,
.button-d_outline {
    padding-top: 0.85714em; /* 12/14 */
    padding-bottom: 0.85714em; /* 12/14 */
}
.button-d_outline,
.button-d_outline:link,
.button-d_outline:visited {
    color: #27ae60;
}
._theme-red .button-d_outline,
._theme-red .button-d_outline:link,
._theme-red .button-d_outline:visited {
    color: #e74c3c;
}
.button-d_outline,
._theme-red .button-d_outline {
    background-color: #fff;
    border: 2px solid currentColor;
}
.button-d_outline:hover,
.button-d_outline:focus {
    background-color: #27ae60;
    border-color: #27ae60;
}
.button-d_outline:active {
    border-color: #1e8549;
}
._theme-red .button-d_outline:hover,
._theme-red .button-d_outline:focus {
    color: #fff;
    background-color: #e74c3c;
    border-color: #e74c3c;
}
._theme-red .button-d_outline:active {
    color: #fff;
    border-color: #d52d1a;
}
.button-d_small {
    padding: 0.71428em 1em; /* 10/14 16/16 */
}
.button-d_thick {
    padding: 0.9em 1.75em; /* 18/20 35/20 */
    font-size: 1.42857rem; /* 20/14 */
}
.button-d_dark,
.button-d_dark:link,
.button-d_dark:visited {
    color: inherit;
}
.button-d_dark,
._theme-red .button-d_dark {
    background-color: #dfdfdf;
}
.button-d_transparent,
.button-d_transparent:link,
.button-d_transparent:visited {
    color: inherit;
}
.button-d_transparent,
.button-d_transparent:hover,
.button-d_transparent:focus,
.button-d_transparent:active,
._theme-red .button-d_transparent,
._theme-red .button-d_transparent:hover,
._theme-red .button-d_transparent:focus,
._theme-red .button-d_transparent:active {
    background-color: transparent;
}
.button-d_transparent {
    border: 2px solid transparent
}
.button-d_transparent:hover,
.button-d_transparent:focus,
.button-d_transparent:active {
    border-color: currentColor;
}
.button-d_transparent:hover,
.button-d_transparent:focus {
    color: #27ae60;
}
.button-d_transparent:active {
    color: #1e8549;
}
._theme-red .button-d_transparent:hover,
._theme-red .button-d_transparent:focus {
    color: #e74c3c;
}
._theme-red .button-d_transparent:active {
    color: #d52d1a;
}



._buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: -.9375rem; /* 15/16 */
    margin-right: -.9375rem; /* 15/16 */
}
._buttons > * {
    margin-top: .9375rem; /* 15/16 */
    margin-left: .9375rem; /* 15/16 */
    margin-right: .9375rem; /* 15/16 */
}



/* Кнопка Вверх */

.upper {
    width: 2.5rem; /* 40/16 */
    height: 2.5rem; /* 40/16 */
    padding: 0;
    position: fixed;
    bottom: 50px;
    right: 50px;
    opacity: 0;
    filter: alpha(opacity=0);
    border: 1px solid #37d278;
    z-index: -2;
    -webkit-animation: .8s both fade-deep-out;
            animation: .8s both fade-deep-out;
}
._theme-red .upper {
    border-color: #ec7669;
}
._upper-show .upper {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 101;
    -webkit-animation-name: fade-deep-in;
            animation-name: fade-deep-in;
}
.upper svg {
    width: 1rem;
    height: 1rem;
}



/* Ошибки/уведомления */

.error,
.errors {
    padding: 0.41667em 0.83333em; /* 5/12 10/12 */
    font-size: 0.85714rem; /* 12/14 */
    font-weight: 500;
    color: #e74c3c;
    border-bottom: 1px solid;
}
.privacy_field a {
    color: #27ae60;
}
.error a,
.errors a,
._theme-red .privacy_field a {
    color: #d52d1a;
}
.privacy_field a:hover,
.privacy_field a:focus,
.privacy_field a:active {
    color: #1e8549;
}
.error a:hover,
.error a:focus,
.error a:active,
.errors a:hover,
.errors a:focus,
.errors a:active,
._theme-red .privacy_field a:hover,
._theme-red .privacy_field a:focus,
._theme-red .privacy_field a:active {
    color: #d52d1a;
}
.required_field,
.privacy_field {
    margin-top: 0.41667em; /* 5/12 */
    font-size: 0.85714rem; /* 12/14 */
}



/*  */

.badge-d {
    display: inline-block;
    margin-bottom: 0.16666em; /* 2/12 */
    padding: 0.25em 0.83333em; /* 3/12 10/12 */
    vertical-align: top;
    font-size: 0.85714rem; /* 12/14 */
    background-color: #f5f5f5;
    border-radius: .3125rem; /* 5/16 */
}
.badge-d,
.badge-d:link,
.badge-d:visited,
.badge-d:hover,
.badge-d:focus,
.badge-d:active {
    color: #808080;
}

.badge-d__icon,
.badge-d__name {
    margin-right: 0.25em; /* 3/12 */
    vertical-align: middle;
}
.badge-d__icon:last-child,
.badge-d__name:last-child {
    margin-right: 0;
}

.badge-d_red,
.badge-d_ok,
.badge-d_green,
.badge-d_blue,
.badge-d_yellow,
.badge-d_red:link,
.badge-d_red:visited,
.badge-d_red:hover,
.badge-d_red:focus,
.badge-d_red:active,
.badge-d_ok:link,
.badge-d_ok:visited,
.badge-d_ok:hover,
.badge-d_ok:focus,
.badge-d_ok:active,
.badge-d_green:link,
.badge-d_green:visited,
.badge-d_green:hover,
.badge-d_green:focus,
.badge-d_green:active,
.badge-d_blue:link,
.badge-d_blue:visited,
.badge-d_blue:hover,
.badge-d_blue:focus,
.badge-d_blue:active,
.badge-d_yellow:link,
.badge-d_yellow:visited,
.badge-d_yellow:hover,
.badge-d_yellow:focus,
.badge-d_yellow:active,
._theme-red .badge-d_red:link,
._theme-red .badge-d_red:visited,
._theme-red .badge-d_red:hover,
._theme-red .badge-d_red:focus,
._theme-red .badge-d_red:active,
._theme-red .badge-d_ok:link,
._theme-red .badge-d_ok:visited,
._theme-red .badge-d_ok:hover,
._theme-red .badge-d_ok:focus,
._theme-red .badge-d_ok:active,
._theme-red .badge-d_green:link,
._theme-red .badge-d_green:visited,
._theme-red .badge-d_green:hover,
._theme-red .badge-d_green:focus,
._theme-red .badge-d_green:active,
._theme-red .badge-d_blue:link,
._theme-red .badge-d_blue:visited,
._theme-red .badge-d_blue:hover,
._theme-red .badge-d_blue:focus,
._theme-red .badge-d_blue:active,
._theme-red .badge-d_yellow:link,
._theme-red .badge-d_yellow:visited,
._theme-red .badge-d_yellow:hover,
._theme-red .badge-d_yellow:focus,
._theme-red .badge-d_yellow:active{
    color: #fff;
}
.badge-d_red {
    background-color: #e74c3c;
}
.badge-d_ok,
.badge-d_green {
    background-color: #27ae60;
}
.badge-d_blue {
    background-color: #2196f3;
}
.badge-d_yellow {
    background-color: #ffb400;
}



._unit {
    padding-bottom: 5rem; /* 80/16 */
}
._unit._bgray,
._unit._bgreen,
._unit._bgrayblue,
._unit._bgray + ._unit,
._unit._bgreen + ._unit,
._unit._bgrayblue + ._unit {
    padding-top: 5rem; /* 80/16 */
}
._bgray {
    background-color: #f5f5f5;
}
._bred {
    color: #fff;
    background-color: #e74c3c;
}
._bgreen {
    color: #fff;
    background-color: #27ae60;
}
._bgrayblue {
    color: #fff;
    background-color: #323555;
}
._bred a,
._bred a:hover,
._bred a:focus,
._bred a:active,
._bgreen a,
._bgreen a:hover,
._bgreen a:focus,
._bgreen a:active,
._bgrayblue a,
._bgrayblue a:hover,
._bgrayblue a:focus,
._bgrayblue a:active,
a._bred,
a._bred:hover,
a._bred:focus,
a._bred:active,
a._bgreen,
a._bgreen:hover,
a._bgreen:focus,
a._bgreen:active,
a._bgrayblue,
a._bgrayblue:hover,
a._bgrayblue:focus,
a._bgrayblue:active {
    color: #fff;
}
._bred .swiper-pagination-bullet,
._bgreen .swiper-pagination-bullet {
    color: #fff;
    opacity: 0.3;
}
._bred .swiper-pagination-bullet-active,
._bgreen .swiper-pagination-bullet-active {
    opacity: 1;
}



section > header {
    margin-bottom: 1em;
    word-wrap: break-word;
    word-break: break-word;
}
.section-d_main > header {
    font-size: 1.33333rem; /* 16/12 */
}
@media (min-width: 576px) {

    .section-d_main > header {
        font-size: 1.66667rem; /* 20/12 */
        line-height: 1.2;
    }
}
@media (min-width: 922px) {

    .section-d_main > header {
        font-size: 2rem; /* 24/12 */
    }
}
.section-d_child {
    margin-bottom: 1.66667rem; /* 20/12 */
}
.section-d_child > header {
    font-size: 1.16667rem; /* 14/12 */
}
@media (min-width: 922px) {

    .section-d_child > header {
        font-size: 1.66667rem; /* 20/12 */
        line-height: 1.2;
    }
}



.form-d__head,
.block-d__head {
    margin-bottom: 2.14285rem; /* 30/14 */
    text-align: center;
}
.form-d__name,
.block-d__name {
    font-size: 2.14285rem; /* 30/14 */
    line-height: 1.2;
}
.form-d__subname,
.block-d__subname {
    font-size: 1.42857rem; /* 20/14 */
}
.form-d__name + .form-d__subname,
.block-d__name + .block-d__subname {
    margin-top: 1.07142rem; /* 15/14 */
}
.block-d__jump {
    margin-top: 1.07142rem; /* 15/14 */
}
@media (min-width: 576px) {

    .form-d__name,
	.block-d__name	{
        font-size: 2.57142rem; /* 36/14 */
        font-size: calc((100vw - 576px) / (1200 - 576) * (50 - 36) + 36px);
    }
}
@media (min-width: 1200px) {

    .form-d__name,
	.block-d__name	{
        font-size: 3.57142rem; /* 50/14 */
    }
}



.media__head {
    margin-bottom: 1.875rem; /* 30/16 */
}
.media__image {
    margin-bottom: 30px;
}

@media (min-width: 922px) {

    .media_hcard {
        display: grid;
        gap: 1.875rem; /* 30/16 */
        grid-template-columns: 1fr 1fr;
        text-align: initial;
    }
    .media_hcard .media__image {
        margin-bottom: 0;
    }
    .media_hcard.media_right .media__image {
        order: 2;
    }
}



/* Карман */

.pocket {
    position: relative;
    overflow: hidden;
}
.pocket__icon,
.pocket__name {
    display: inline-block;
    vertical-align: middle;
}
.pocket__icon svg {
	width: 1em; /* 16/16 */
	height: 1em; /* 16/16 */
	fill: currentColor;
}
.pocket__flap {
    padding-left: 1.25rem; /* 20/16 */
    position: relative;
    font-size: 1.125em; /* 18/16 */
    cursor: pointer;
}
.pocket__flap:hover .pocket__icon svg {
    fill: #27ae60;
}
.pocket__flap:focus .pocket__icon svg,
.pocket__flap:active .pocket__icon svg {
    fill: #1e8549;
}
._theme-red .pocket__flap:hover .pocket__icon svg {
    fill: #e74c3c;
}
._theme-red .pocket__flap:focus .pocket__icon svg,
._theme-red .pocket__flap:active .pocket__icon svg {
    fill: #d52d1a;
}
.pocket__flap::before {
    display: block;
    width: 6px; /* 6/18 */
    height: 6px; /* 6/18 */
    position: absolute;
    top: 9px; /* 9/18 */
    left: 0;
    content: '';
    background: currentColor;
    border-radius: 50%;
    z-index: 2;
}
.pocket__flap:hover::before,
.pocket._active .pocket__flap::before {
    background-color: #27ae60;
}
._theme-red .pocket__flap:hover::before,
._theme-red .pocket._active .pocket__flap::before {
    background-color: #e74c3c;
}
.pocket__flap:focus::before,
.pocket__flap:active::before,
.pocket._active .pocket__flap:focus::before,
.pocket._active .pocket__flap:active::before {
    background-color: #1e8549;
}
._theme-red .pocket__flap:focus::before,
._theme-red .pocket__flap:active::before,
._theme-red .pocket._active .pocket__flap:focus::before,
._theme-red .pocket._active .pocket__flap:active::before {
    background-color: #d52d1a;
}
.pocket__content {
    margin-top: .9375rem; /* 15/16 */
    position: absolute;
    visibility: hidden;
    opacity: 0;
    clip: rect(0,0,0,0);
    filter: alpha(opacity=0);
    z-index: -2;
}
.pocket__content:empty {
    display: none;
}
.pocket._active > .pocket__content {
    position: static;
    visibility: visible;
    clip: auto;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 2;
}
.pocket__text {
    border-left: 3px solid #27ae60;
}



.devoloper_tech {
    display: none;
}



.signboard {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 5rem; /* 80/16 */
    padding-bottom: 5rem; /* 80/16 */
    position: relative;
    color: #fff;
    background: #27ae60;
    background-image: url(../../img/landing/signboard.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.signboard::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
}
.signboard__box {
    z-index: 2;
}
.signboard__logos {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    gap: 0.475rem; /* 30/16 */
    margin-bottom: 1.875rem; /* 30/16 */
}
.signboard__logos svg {
    width: auto;
    height: 20px;
}
.signboard__head {
    margin-bottom: 1.875rem; /* 30/16 */
}
.signboard__subname {
    margin-top: 1.875rem; /* 30/16 */
}
.signboard__list {
    margin-top: 5rem; /* 80/16 */
}
.signboard__jump {
    margin-top: 1.25rem; /* 20/16 */
}

@media (min-width: 576px) {

    .signboard__logos svg {
        height: 32px;
    }
    .signboard__list {
        margin-top: 7.5rem; /* 120/16 */
    }
}



.positive {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 3.75rem; /* 60/16 */
}
.positive__icon {
    margin-bottom: 1.875rem; /* 30/16 */
}
.positive__icon svg {
    width: auto;
    height: 50px;
    margin: 0 auto;
}

@media (min-width: 922px) {

    .positive {
        display: inline-block;
        width: 33.33333%;
        padding-left: .9375rem; /* 15/16 */
        padding-right: .9375rem; /* 15/16 */
        vertical-align: top;
    }
}



section {
    text-align: center;
}

.section__head {
    margin-bottom: 2.5rem; /* 40/16 */
}



.benefit {
    padding: .9375rem; /* 15/16 */
    padding-top: 3.75rem; /* 60/16 */
    color: #fff;
    background-color: #27ae60;
    border-radius: .3125rem; /* 5/16 */
}
.benefit__icon {
    margin-bottom: 2.5rem; /* 40/16 */
}
.benefit__icon svg {
    width: auto;
    height: 32px;
    margin: 0 auto;
}
.benefit__text {
    margin-bottom: 1.25rem; /* 20/16 */
}
.benefit__text strong {
    font-size: 2.25rem; /* 36/16 */
}
.benefit__cash {
    font-size: 1.5rem; /* 24/16 */
}



.section_benefits .section__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(0, 268px));
    gap: 1.875rem; /* 30/16 */
    justify-content: center;
    margin-bottom: 2.5rem; /* 40/16 */
}

.section_benefits .section__text strong {
    font-size: 2rem; /* 32/16 */
}

.section_benefits .section__jump {
    margin-top: 2.5rem; /* 40/16 */
}



.section_advantages .media:not(:last-child) {
    margin-bottom: 3.75rem; /* 60/16 */
    padding-bottom: 3.75rem; /* 60/16 */
    border-bottom: 1px solid #dfdfdf;
}



.video {
    border-radius: .3125rem; /* 5/16 */
}



.section_faq .pocket {
    text-align: initial;
}
.section_faq .section__jump {
    margin-top: 3.75rem; /* 60/16 */
}



.contact:not(:last-child) {
    margin-bottom: 1.25rem; /* 20/16 */
}
.contact__head {
    margin-bottom: .3125rem; /* 5/16 */
}
.contact__text a {
    font-size: 1.125em; /* 18/16 */
}




.footer {
    text-align: center;
}
.footer._unit {
    padding-top: 2.5rem; /* 40/16 */
}


.logo_aist {
	width: 70px;
}

.benefit__icon_aist {
	width: 40px;
}