html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    background: #F3F7FA;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Inter', Arial,  sans-serif;
    font-weight: 400;
    font-size: 16px;
}
p {
    margin: 0;
}
h1, h2, h3, h4 {
    color: rgba(0, 0, 0, 0.87);
}
.container {
    width: 100%;
    max-width: 1256px;
    padding: 0 20px;
    margin: 0 auto;
}
.button {
    display: inline-flex;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
    background: #028AF3;
    border: 2px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0px 2px 4px rgba(2, 73, 129, 0.24);
    transition: background .3s ease;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    min-width: 176px;
}
.button:hover {
    background: #3FA6F6;
}
.button-light {
    background: rgba(2, 138, 243, 0.06);
    box-shadow: 0px 2px 4px rgba(2, 73, 129, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 15px 31px;
    color: #028AF3;
}
.button-light:hover {
    background: rgba(63, 144, 206, 0.12);
}
.button-outline {
    background: transparent;
    border-color: #028AF3;
    color: #028AF3;
    transition: background .3s ease, color .3s ease;
}
.button-outline:hover  {
    background: #028AF3;
    color: #ffffff;
}
.button-outline-white {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transition: background .3s ease, color .3s ease;
}
.button-outline-white:hover  {
    background: #FFFFFF;
    color: #028AF3;
}
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(179, 197, 210, 0.3);
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 71px;
}
.header__logo img {
    width: 196px;
    height: auto;
    display: block;
}
.header__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.header__nav li {
    margin-right: 32px;
}
.header__nav li:last-child {
    margin-right: 0;
}
.header__nav-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    transition: color 0.3s ease;
}
.header__nav-link:hover {
    color: rgba(0, 0, 0, 0.4);
}
.header__burger {
    display: none;
    margin-right: -16px;
    cursor: pointer;
}
.header__burger svg {
    display: block;
}
/* .header__burger-icon:hover path{
    fill: #028AF3;
}
.header__burger-close:hover path{
    stroke: #028AF3;
} */
.header__burger .header__burger-close {
    display: none;
}
.footer__content {
    border-top: 2px solid rgba(179, 197, 210, 0.3);
    padding-top: 62px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 32px;
}
.footer__left {
    grid-column: span 5;
}
.footer__logo img {
    display: block;
    width: 376px;
    max-width: 100%;
}
.footer__nav {
    grid-column: span 3;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer__nav li {
    margin-bottom: 32px;
}
.footer__nav li:last-child {
    margin-bottom: 0;
}
.footer__nav-link {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.3px;    
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color .3s ease;
}
.footer__nav-link:hover {
    color: rgba(0, 0, 0, 0.87);
}
.footer__contacts {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__contacts-mail {
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.5px;
    color: #028AF3;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    text-decoration: none;
}
.footer__contacts-mail img {
    margin-right: 12px;
}
.footer__polytics, .footer__copyright {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
}
.footer__polytics {
    margin-bottom: 28px;
}
.footer__copyright a {
    text-decoration: underline;
    color: inherit;
}
.projects-head {
    padding-top: 32px;
    padding-bottom: 32px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
}
.link-back {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #028AF3;
    text-decoration: none;
}
.link-back img {
    margin-right: 12px;
}
.page-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.5px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 48px 0;
}
.projects-head__title {
    margin-bottom: 24px;
}
.tabs-nav {
    display: flex;
    margin-bottom: 32px;
}
.tabs-nav__link {
    padding: 10px 22px;
    border: 2px solid rgba(179, 197, 210, 0.3);
    border-radius: 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    transition: 0.3s ease;
    margin-right: 8px;
    cursor: pointer;
}
.tabs-nav__link:hover {
    border-color: #028AF3;
    color: #028AF3;
}
.tabs-nav__link.active {
    border-color: #028AF3;
    color: #028AF3;
    background: rgba(2, 138, 243, 0.06);
    pointer-events: none;
}
.tabs-content {
    display: none;
}
.tabs-content.active {
    display: block;
}
.projects-filters {
    display: flex;
    flex-wrap: wrap;
}
.projects-filters__item {
    width: calc(25% - 24px);
    margin-right: 32px;
    margin-bottom: 16px;
}
.projects-filters__item:nth-child(4n + 4) {
    margin-right: 0;
}
.select {
    position: relative;
}
.default-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    padding: 12px 16px;
    background: rgba(2, 138, 243, 0.06);
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.4);
    transition: background .3s ease, color .3s ease;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}
.default-option span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.default-option svg {
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s ease;
}
.default-option svg path {
    transition: .3s ease;
}
.default-option:hover {
    background: rgba(63, 144, 206, 0.12);
}
.default-option:hover svg path, .default-option.active svg path {
    stroke: #028AF3;
    stroke-opacity: 1;
}
.default-option.active {
    padding: 10px 14px;
    border: 2px solid #028AF3;
    background: rgba(2, 138, 243, 0.06);
    color: rgba(0, 0, 0, 0.87);
}
.default-option.active svg {
    transform: rotate(180deg);
}
.default-option.filled {
    color: rgba(0, 0, 0, 0.6);
}
.default-option.filled.active {
    color: rgba(0, 0, 0, 0.87);
}
.default-option.filled svg path {
    stroke: #028AF3;
    stroke-opacity: 1;
}
.dropdown-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 100%;
    margin-top: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(179, 197, 210, 0.3);
    box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
    border-radius: 8px;
    padding: 12px 0;
    max-height: 306px;
    overflow-y: auto;
}
.dropdown-list.active {
    display: block;
}
.dropdown-list li {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: background .3s ease;
}
.dropdown-list li:hover {
    background: rgba(63, 144, 206, 0.12);
}
.dropdown-list li.selected {
    color: #028AF3;
    font-weight: 700;
}
.projects-sorting {
    position: relative;
    margin-bottom: 20px;
    width: -moz-fit-content;
    width: fit-content;
}
.sorting-default {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: color .3s ease, opacity .3s ease;
}
.sorting-default svg {
    flex-shrink: 0;
}
.sorting-default svg path {
    transition: .3s ease;
}
.sorting-default .sorting-arrow {
    margin-left: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.sorting-default:hover, .sorting-default.active {
    color: #028AF3;
}
.sorting-default:hover .sorting-arrow path, .sorting-default.active .sorting-arrow path, .sorting-default.filled .sorting-arrow path {
    stroke: #028AF3;
    stroke-opacity: 1;
}
.sorting-default.active .sorting-arrow{
    transform: rotate(180deg);
}
.sorting-default.filled {
    color: #028AF3;
}
.sorting-default.filled .sorting-icon {
    margin-right: 8px;
}
.sorting-default.filled .sorting-icon path {
    fill: #028AF3;
}
.sorting-default.filled {
    opacity: 0.76;
}
.sorting-default.filled:hover {
    opacity: 1;
}
.sorting-list {
    width: 280px;
    z-index: 9;
}
.sorting-list li {
    display: flex;
    align-items: flex-start;
}
.sorting-list li .sorting-icon {
    margin-right: 12px;
    flex-shrink: 0;
}
.sorting-list li.selected .sorting-icon path {
    fill: #028AF3;
}
.projects-additional {
    display: flex;
    align-items: center;
}
.projects-number {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
}
.projects-additional__divider {
    width: 4px;
    height: 4px;
    margin-left: 12px;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 100%;
    margin-left: 12px;
    margin-right: 12px;
}
.projects-clear-filters {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: color .3s ease;
}
.projects-clear-filters svg {
    margin-left: 8px;
}
.projects-clear-filters svg path {
    transition: .3s ease;
}
.projects-clear-filters:hover {
    color: #028AF3;
}
.projects-clear-filters:hover svg path {
    stroke: #028AF3;
    stroke-opacity: 1;
}
.projects-list-tab {
    padding: 32px 0 100px 0;
}
.projects-map-tab {
    padding-bottom: 100px;
}
.projects-map {
    width: 100%;
    height: 800px;
}
.projects-feed {
    min-height: 200px;
}
.projects-feed .project-card {
    margin-bottom: 20px;
}
.projects-feed .project-card:last-child {
    margin-bottom: 0;
}
.project-card {
    display: flex;
    min-height: 312px;
    width: 100%;
    max-width: 1008px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    border-radius: 24px;
    overflow: hidden;
    transition: box-shadow .3s ease;
    text-decoration: none;
}
.project-card:hover, .project-sm-card:hover {
    box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
}
.project-card__img {
    width: 38%;
    background-size: cover;
    background-position: center;
}
.project-tag {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    margin: 8px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2px 16px 2px 2px;
}
.project-tag__icon {
    width: 32px;
    height: 32px;
    box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
    margin-right: 8px;
    border-radius: 100%;
}
.project-card__content {
    width: 62%;
    padding: 28px 32px 20px 32px;
    display: flex;
    flex-direction: column;
}
.project-status {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
}
.project-status span {
    display: flex;
    align-items: flex-start;
    margin-right: 8px;
}
.project-status span::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.16);
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 8px;
}
.project-status span:first-child::before {
    display: none;
}
.project-card__status {
    margin-bottom: 4px;
}
.project-card__title, .project-sm-card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 8px 0;
    transition: color .3s ease;
}
.project-card:hover .project-card__title, .project-sm-card:hover .project-sm-card__title {
    color: #028AF3;
}
.location {
    background-image: url('../img/location-icon.svg');
    padding-left: 20px;
    background-position: 0 2px;
    background-repeat: no-repeat;
    background-size: 12px auto;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}
.project-card__location {
    margin-bottom: 12px;
}
.project-card__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}
.projects-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
}
.project-sm-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    transition: box-shadow .3s ease;
    border-radius: 24px;
    overflow: hidden;
}
.project-sm-card__img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
} 
.project-sm-card__content {
    padding: 12px 16px 4px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
} 
.rate-btns {
    display: flex;
}
.rate-btn, .button-open-share {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    transition: .3s ease;
    cursor: pointer;
    text-decoration: none;
}
.rate-btn svg, .button-open-share svg {
    margin-right: 8px;
}
.rate-btn svg path, .button-open-share svg path {
    transition: fill .3s ease;
}
.rate-btn .rate-icon-active {
    display: none;
}
.rate-btn:hover, .button-open-share:hover {
    background: rgba(2, 138, 243, 0.06);
    color: #028AF3;
}
.rate-btn:hover svg path, .rate-btn.active svg path, .button-open-share:hover svg path, .button-open-share.active svg path {
    fill: #028AF3;
}
.rate-btn.active, .button-open-share.active {
    color: #028AF3;
}
.rate-btn.active .rate-icon-default {
    display: none;
}
.rate-btn.active .rate-icon-active {
    display: block;
}
.rate-btn__text {
    margin-right: 4px;
}
.project-card__rate-btns, .project-sm-card__rate-btns {
    margin-left: -12px;
    margin-top: auto;
}
.projects-search {
    width: calc(25% - 24px);
    position: relative;
    margin-bottom: 24px;
}
.projects-search__input {
    outline: none;
    border: none;
    width: 100%;
    padding: 12px 32px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.87);
    border-bottom: 1px solid rgba(166, 175, 182, 0.4);
    transition: border-color .3s ease;
}
.projects-search__input::placeholder {color: rgba(0, 0, 0, 0.4);}
.projects-search__input::-webkit-input-placeholder {color: rgba(0, 0, 0, 0.4);}
.projects-search__icon {
    position: absolute;
    width: 24px;
    left: 0;
    top: 12px;
}
.projects-search__icon path, .projects-search__clear svg path {
    transition: all .3s ease;
}
.projects-search__clear {
    display: none;
    position: absolute;
    right: 0;
    top: 8px;
    cursor: pointer;
    padding: 0;
    background: none;
    outline: none;
    border: none;
    font-size: 0;
}
.projects-search__clear:hover svg path {
    stroke: #028AF3;
    stroke-opacity: 1;
}
.projects-search:hover .projects-search__icon path {
    fill: #028AF3;
    fill-opacity: 1;
}
.projects-search:hover .projects-search__input {
    border-color: #028AF3;
}
.news-page {
    padding: 32px 0 100px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    align-items: start;
}
.index-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 32px;
    align-items: start;
}
.news-card {
    display: block;
    text-decoration: none;
}
.news-card__img {
    width: 100%;
    height: 212px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 24px;
}
.news-card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin:  0 0 16px 0;
    transition: color .3s ease;
}
.news-card__date {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.news-card:hover .news-card__title {
    color: #028AF3;
}
.load-more-btn {
    text-align: center;
    margin-top: 48px;
}
.intro {
    width: 100%;
    background-size: cover;
    background-position: center;
    padding-top: 108px;
    padding-bottom: 64px;
    color: #ffffff;
    position: relative;
}
.intro__video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
}
.intro__video-shade {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 31, 73, 0.4); */
    background-color: rgba(0, 10, 17, 0.32);
    position: absolute;
    top: 0;
    left: 0;
}
.intro__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.intro__title {
    font-size: 48px;
    line-height: 1;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}
.intro__title span {
    font-weight: 900;
}
.intro__subtitle {
    max-width: 520px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    margin-bottom: 40px;
}
.intro__buttons {
    display: flex;
    align-items: flex-start;
}
.intro__buttons .button {
    margin-right: 12px;
}
.intro__buttons .button:last-child {
    margin-right: 0;
}
.index-page {
    padding: 64px 0 0 0;
}
.index-section, .discussions-section, .others-section {
    margin-bottom: 100px;
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.section-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 40px 0;
}
.section-head .section-title {
    margin: 0;
}
.section-link {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #028AF3;
    text-decoration: none;
    margin-left: 32px;
    margin-top: 4px;
}
.section-link:hover {
    text-decoration: underline;
}
.section-link-mobile {
    display: none;
    text-align: center;
    margin-top: 40px;
}
.section-link-mobile .section-link {
    margin: 0;
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 32px;
    align-items: start;
}
.popular-grid__left {
    grid-column: span 9;
}
.popular-grid__right {
    grid-column: span 3;
}
.index-section-popular__head {
    justify-content: flex-start;
}
.social-projects {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}
.projects-list {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    border-radius: 12px;
}
.project-line {
    padding: 16px 16px 15px 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 80px;
    border-bottom: 1px solid rgba(179, 197, 210, 0.3);
}
.project-line:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}
.project-line__number {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.16);
    min-width: 16px;
    flex-shrink: 0;
    margin-right: 12px;
    transition: color .3s ease;
}
.project-line:hover .project-line__number {
    color: #3FA6F6;
}
.project-line__text {
    display: flex;
    flex: 1;
    margin-right: 32px;
}
.project-line__title {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    flex: 1;
    transition: color .3s ease;
}
.project-line:hover .project-line__title {
    color: #028AF3;
}
.project-line__rate-btns {
    width: 190px;
    flex-shrink: 0;
    justify-content: space-between;
}
.activity-block__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 28px 0 24px 0;
}
.activity-buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 16px;
}
.activity-button {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    border-radius: 12px;
    padding: 16px 20px 17px 20px;
    text-decoration: none;
}
.activity-button__info {
    flex: 1;
}
.activity-button__icon {
    flex-shrink: 0;
    margin-right: 20px;
}
.activity-button__arrow {
    flex-shrink: 0;
    margin-left: 20px;
    opacity: 0.56;
}
.activity-button:hover .activity-button__arrow {
    opacity: 1;
}
.activity-button__number {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
}
.activity-button__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.activity-button_blue {
    background: #3CBAEE;
    background: linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), #3CBAEE;
}
.activity-button_blue:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)), linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), #3CBAEE;
}
.activity-button_green {
    background: #3CC472;
    background: linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), linear-gradient(0deg, #3CC472, #3CC472), #3CBAEE;
}
.activity-button_green:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)), linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), #3CC472;
}
.activity-button_blue .activity-button__number, .activity-button_green .activity-button__number, .activity-button_blue .activity-button__text, .activity-button_green .activity-button__text {
    color: #ffffff;
}
.discussions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    align-items: start;
}
.discussion-card {
    display: block;
    text-decoration: none;
}
.discussion-card__img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    position: relative;
    border-radius: 2px;
}
.discussion-card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 16px 0;
}
.discussion-card__title:last-child {
    margin-bottom: 0;
}
.discussion-card__date {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.discussion-card__future-date {
    display: inline-flex;
    background: #FFFFFF;
    border-radius: 2px;
    padding: 4px 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.87);
    margin: 8px;
    position: relative;
}
.discussion-card__img::before {
    /* content: url('../img/play-icon.svg'); */
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity .3s ease;
    
} 
.discussion-card:hover .discussion-card__img::before {
    opacity: 1;
} 
.social-projects__list {
    width: 50%;
    width: calc(50% - 16px);
    background: #ffffff;
}
.social-projects__list .project-line {
    padding: 24px 16px 23px 24px;
    min-height: 96px;
}
.social-projects__list .project-line:last-child {
    border-bottom: none;
    padding-bottom: 32px;
}
.social-projects__map {
    width: 50%;
    width: calc(50% + 16px);
}
.banner-form {
    background: #3CBAEE;
    background: linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), linear-gradient(0deg, #3CBAEE, #3CBAEE), #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    border-radius: 12px;
    padding: 45px 64px 64px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}
.banner-form_green {
    background: #6ed497;
    background: linear-gradient(276.14deg, rgba(255, 255, 255, 0.4) 0.46%, rgba(255, 255, 255, 0) 101.77%), linear-gradient(0deg, #6CD395, #6CD395), #FFFFFF;
}
.banner-form__img {
    max-width: calc(50% - 36px);
    margin-right: 36px;
}
.banner-form__content {
    width: 50%;
}
.banner-form__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: #ffffff;
    margin: 0 0 24px 0;
    /* max-width: 332px; */
}
.banner-form__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 16px;
    max-width: 430px;
}
.banner-form__text_white {
    color: #ffffff;
}
.banner-form__text span {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
}
.banner-form_green .banner-form__text {
   max-width: 460px;
}
.banner-form__button {
    margin-top: 16px;
}
.index-section-documents__title {
    text-align: center;
}
.documents-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.documents-list .document {
    margin-bottom: 12px;
}
.documents-list .document:last-child {
    margin-bottom: 0;
}
.document {
    padding: 22px;
    text-decoration: none;
    border: 2px solid rgba(179, 197, 210, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: .3s ease;
}
.document:hover {
    background: rgba(2, 138, 243, 0.06);
    border: 2px solid #028AF3;
}
.document__icon {
    width: 48px;
    flex-shrink: 0;
    margin-right: 20px;
}
.document__info {
    flex: 1;
    max-width: calc(100% - 136px);
}
.document__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.document__data {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
}
.document__button {
    height: 48px;
    width: 48px;
    background-color: transparent;
    background-image: url('../img/download-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    margin-left: 20px;
    opacity: 0;
    transition: .3s ease;
}
.document:hover .document__button {
    opacity: 1;
}
.document__button:hover {
    background-color: rgba(63, 144, 206, 0.12);
}
.discussions-page {
    padding-top: 32px;
}
.current-video-container, .article-main-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 48px;
}
.current-video-container iframe, .article-main-video iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
    margin: 0;
}
.article-page {
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    padding: 32px 0 100px 0;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 32px;
}
.article-grid__left {
    grid-column: span 2;
}
.article-grid__center {
    grid-column: span 6;
    min-width: 0;
}
.article-grid__right {
    grid-column: span 4;
}
.article-buttons {
    margin: 72px -12px 0 -12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.article-buttons .rate-btns {
    flex-direction: column;
    align-items: flex-start;
}
.article-head {
    margin-bottom: 48px;
}
.article-head_mobile {
    display: none;
}
.article-head__status {
    margin-bottom: 16px;
}
.article-head__locations {

}
.article-head__locations .location {
    margin-bottom: 8px;
}
.article-head__locations .location:last-child {
    margin-bottom: 0;
}
.locations-btn {
    display: none;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 16px;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition: color .3s ease;
}
.locations-btn svg {
    margin-left: 8px;
}
.locations-btn svg path {
    transition: .3s ease;
}
.locations-btn:hover {
    color: #028AF3;
}
.locations-btn:hover svg path {
    stroke-opacity: 1;
    stroke: #028AF3;
}
.locations-btn .locations-btn__hide {
    display: none;
}
.locations-btn.show {
    display: flex;
}
.locations-btn.active .locations-btn__show {
    display: none;
}
.locations-btn.active .locations-btn__hide {
    display: block;
}
.locations-btn.active svg {
    transform: rotate(180deg);
}
.article-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 16px 0;
}
.article-date {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.article-main-img {
    margin-bottom: 48px;
}
.article-main-img img {
    border-radius: 2px;
    width: 100%;
    display: block;
    margin-bottom: 12px;
	max-width: 1008px;
	width: 171%;
}
.article-main-img__text  {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.article-main-img__text span {
    color: rgba(0, 0, 0, 0.4);
}
.article-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.article-text p {
    margin-bottom: 32px;
}
.article-text img {
    display: block;
    border-radius: 2px;
    max-width: 100%;
    margin-bottom: 32px;
}
.article-text iframe {
    display: block;
    width: 100%;
    height: 335px;
    margin-bottom: 32px;
}
.article-text a {
    text-decoration: underline;
    color: inherit;
}
.article-text ul {
    margin: 0 0 32px 0;
}
.article-text h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 32px 0;
}
.article-text h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 32px 0;
}
.article-text .article-source {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
}
.article-text .article-source a {
    color: #028AF3;
    text-decoration: none;
}
.article-text > *:first-child {
    margin-top: 0;
}
.article-text > *:last-child {
    margin-bottom: 0;
}
.article-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin: 48px 0;
}
.article-numbers__item {
    background: #F3F7FA;
    border-radius: 12px;
    padding: 24px;
}
.article-numbers__item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;    
    letter-spacing: 0.3px;   
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 8px 0;
}
.article-numbers__item-text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.article-section {
    margin: 64px 0;
}
.article-section h2 {
    margin-bottom: 40px;
}
.article-section img {
    display: block;
}
.article-text .news-card {
    text-decoration: none;
}
.article-news-slider .news-card {
    margin: 0 32px 0 0;
}
.article-news-slider .news-card:last-child {
    margin-right: 0;
}
.article-gallery-for {
    margin-bottom: 24px;
}
.article-gallery-for .slick-track {
    display: flex;
}
.article-gallery-for__slide {
    align-self: center;
}
.article-gallery-for__slide img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 500px;
}
.article-gallery-nav {
    padding-left: 64px;
    padding-right: 64px;
    margin: 0 -12px;
}
.article-gallery-nav__slide {
    width: 100%;
    height: 80px;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 2px;
    margin: 0 12px;
}
.article-gallery-nav__slide.slick-current {
    opacity: 1;
    border-color:  #028AF3;
}
.article-gallery-nav .slick-prev, .article-gallery-nav .slick-next, .article-news-slider .slick-prev, .article-news-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    border-radius: 100%;
    background-color: #FFFFFF;
    border: 1px solid rgba(179, 197, 210, 0.3);
    box-shadow: 0px 0px 12px rgb(0 51 91 / 4%), 0px 24px 52px rgb(0 51 91 / 8%);
    transition: .3s background-color ease;
    background-repeat: no-repeat;
    background-position: center; 
    z-index: 1;
}
.article-gallery-nav .slick-prev:hover, .article-gallery-nav .slick-next:hover, .article-news-slider .slick-prev:hover, .article-news-slider .slick-next:hover {
    background-color: #F3F7FA;
}
.article-gallery-nav .slick-prev {
    left: 12px;
    background-image: url('../img/slider-prev.svg');
}
.article-news-slider .slick-prev {
    left: 20px;
    background-image: url('../img/slider-prev.svg');
}
.article-gallery-nav .slick-next {
    right: 12px;
    background-image: url('../img/slider-next.svg');
}
.article-news-slider .slick-next {
    right: 20px;
    background-image: url('../img/slider-next.svg');
}
.article-news-slider .slick-prev.slick-disabled, .article-news-slider .slick-next.slick-disabled {
    opacity: 0;
    visibility: hidden;
}
.article-gallery-for .slick-dots {
    position: static;
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    margin-top: 20px;
}
.article-gallery-for .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 12px 0 0;
    display: inline-block;
}
.article-gallery-for .slick-dots li:last-child {
    margin-right: 0;
}
.article-gallery-for .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: rgba(63, 144, 206, 0.12);
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
}
.article-gallery-for .slick-dots .slick-active button {
    background: #028AF3;
}
.article-map-container {
    margin-top: 72px;
}
.article-map {
    width: 100%;
    height: 384px;
    border-radius: 12px;
}
.map-marker {
    border-radius: 100%;
}
.other-items {
    padding-top: 100px;
}
.discussion-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.87);
    padding: 3px 11px;
    border: 1px solid rgba(179, 197, 210, 0.3);
    border-radius: 2px;
    margin-bottom: 16px;
    width: -moz-fit-content;
    width: fit-content;
}
.mapboxgl-popup-content {
    background-color: #fff;
    border-radius: 24px;
    padding: 0;
    box-shadow: none;
    width: 260px;
}
.map-popup {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    width: 260px;
}
.map-popup__img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.map-popup__content {
    padding: 12px 16px 20px 16px;
}
.map-popup__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 16px;
}
.map-popup__button {
    width: 100%;
    padding: 10px;
}
.mapboxgl-popup-close-button {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: #ffffff url('../img/cross-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    font-size: 0;
    line-height: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: background-color .3s ease;
}
.mapboxgl-popup-close-button:hover {
    background-color: #f0f8fe;
}
.share-block {
    position: relative;
}
.share-btns {
    display: none;
    position: absolute;
    z-index: 11;
    left: 100%;
    top: 0;
    width: 248px;
    background: #ffffff;
    margin-left: 8px;
    border: 1px solid rgba(179, 197, 210, 0.3);
    box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
    border-radius: 8px;
    padding: 12px 0;
}
.share-btns.active {
    display: block;
}
.share-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    padding: 16px 20px;
    transition: background .3s ease;
}
.share-button svg {
    margin-right: 12px;
}
.share-button svg path {
    transition: fill .3s ease;
}
#shareVk:hover svg path {
    fill: #456DB0;
}
#shareOk:hover svg path {
    fill: #EE820A;
}
#shareTw:hover svg path {
    fill: #44A5EF;
}
#getLink:hover svg path {
    fill: #028AF3;
}
.share-button:hover {
    background: rgba(63, 144, 206, 0.12);
}
.page-404 {
    padding-top: 200px;
    padding-bottom: 268px;
}
.page-404__content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.page-404__title {
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    letter-spacing: -1px;
    color: rgba(63, 144, 206, 0.12);
    margin: 0 0 32px 0;
}
.page-404__subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.page-404__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 48px;
}


.forms-page, .form-page {
    padding: 32px 0 100px 0;
}
.forms-page__subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 696px;
    margin-bottom: 48px;
}
.forms-page__banner {
    margin-bottom: 32px;
}
.forms-page__banner:last-child {
    margin-bottom: 0;
}
.form-page__title {
    margin-bottom: 16px;
}
.form-page__subtitle, .form-page__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 592px;
}
.form-page__subtitle {
    margin-bottom: 48px;
}
.form-page__text {
    margin-bottom: 64px;
}
.form-page__text b {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.87);
}
.form-page__text a {
    color: inherit;
    text-decoration: underline;
}
.form-blank-wrap {
    margin: 0 auto;
    max-width: 800px;
}
.form-step__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 40px 0;
}
.form-step__title span {
    color: #9AD0FA;
}
.form-blank-section {
    width: 100%;
    padding: 40px 64px 48px 32px;
    background: #ffffff;
    box-shadow: 0px 0px 8px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.02);
    border-radius: 12px;
    margin-bottom: 32px;
}
.form-blank-section__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
}
.form-blank-section__title span {
    display: block;
    font-weight: 500;
    color: #3FA6F6;
    letter-spacing: 0.5px;
    margin-right: 12px;
}
.form-blank-section__subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 32px;
}
.radio-group {
    margin-bottom: 20px;
}
.radio-group:last-child {
    margin-bottom: 0;
}
.radio-group input[type=radio],.radio-group input[type=checkbox] {
    display: none;
    outline: none;
}
.radio + label {
    display: flex;
    user-select: none;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.radio + label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #A6AFB6;
    border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
    background: transparent url("../img/blue-circle.svg") no-repeat center center;
    background-size: 0;
    transition:  .1s ease;
}
.radio + label:hover::before {
    background-color: rgba(63, 144, 206, 0.12);
    border-color: #028AF3;
}
.radio:checked + label::before {
    background-color: transparent;
    background-size: 8px !important;
    border-color: #028AF3;
}
.attach-buttons {
    display: flex;
}
.attach-button {
    width: 280px;
    margin-right: 32px;
}
.attach-button:last-child {
    margin-right: 0;
}
.attach-file-input {
    display: none;
}
.attach-file-label, .attach-location {
    display: flex;
    align-items: center;
    color: #028AF3;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: color .3s ease;
}
.attach-file-label svg, .attach-location svg {
    margin-right: 12px;
}
.attach-file-label svg path, .attach-location svg path {
    transition: fill .3s ease;
}
.attach-file-label .attach-file-img_gray {
    display: none;
}
.attach-file-label:hover, .attach-location:hover {
    color: #3FA6F6;
}
.attach-file-label:hover svg path, .attach-location:hover svg path {
    fill: #3FA6F6;
}
.preview-wrap {
    width: 100%;
    max-width: 100%;
    text-align: right;
    margin-top: 8px;
    display: none;
}
.preview-img {
    width: 100%;
    height: auto;
}
.preview-map {
    width: 100%;
    height: 180px;
}
.form-submit-wrap {
    text-align: center;
    margin-top: 48px;
}
.form-submit-wrap .button {
    margin: 0 6px;
}
.form-group-input .form-input{
    max-width: 280px;
}
.form-group-input .select{
    width: 280px;
}
.form-group-input_wide {
    max-width: 388px;
}
.form-group-input_wide .form-input {
    max-width: none;
}
.form-group-message {
    max-width: 388px;
    margin-bottom: 20px;
}
.form-group-message:last-child {
    margin-bottom: 0;
}
.multiply .form-group-input {
    margin-bottom: 16px;
}
.multiply .radio-buttons {
    margin-top: 36px;
}
.form-input, .form-textarea {
    width: 100%;
    background: rgba(2, 138, 243, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    border: 2px solid transparent;
    outline: none;
    display: block;
    transition: .3s ease;
}
.form-input::placeholder, .form-textarea::placeholder {color: rgba(0, 0, 0, 0.4);}
.form-input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {color: rgba(0, 0, 0, 0.4);}
.form-textarea {
    height: 96px;
    resize: none;
}
.form-input:hover, .form-textarea:hover {
    background: rgba(63, 144, 206, 0.12);
}
.form-input:focus, .form-textarea:focus {
    background: rgba(2, 138, 243, 0.06);   
    border-color: #028AF3;
    color: rgba(0, 0, 0, 0.87);
}
.form-input.error, .form-textarea.error {
    border-color: #f00;
}
.checkbox.disabled {
    pointer-events: none;
}
.checkbox__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.checkbox__text  {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}
.checkbox__text a {
    text-decoration: underline;
    color: #028AF3;
}
.checkbox__text span {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
}
.disabled .checkbox__text, .disabled .checkbox__text span {
    color: rgba(0, 0, 0, 0.4) !important;
}
.checkbox__text::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #A6AFB6;
    border-radius: 2px;
    box-sizing: border-box;
    transition: background .3s ease;
}
.checkbox:hover .checkbox__text::before {
    background: rgba(63, 144, 206, 0.12);
}
.checkbox__input + .checkbox__text:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    height: 9px;
    background: url('../img/check.svg') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: opacity .2s ease;
}
.checkbox__input:checked + .checkbox__text:after {
    opacity: 1;
}
.checkbox__input.error + .checkbox__text::before {
    border-color: #f00;
}
.region_and_address {
    display: flex;
    align-items: center;

}
.region_and_address span.or {
    margin: 0 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
}
.hidden {
    display: none;
}
.form-blank-section.error .form-blank-section__title, .form-blank-section.error .form-blank-section__title span {
    color: #f00;
}
.form_stars .starline {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form_stars .starline:last-child {
    margin-bottom: 0;
}
.form_stars .starline .stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 128px;
    flex: none;
}
.form_stars .starline .stars img {
    width: 24px;
    cursor: pointer;
}
.form_stars .starline span {
    margin-left: 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.radio-buttons .checkbox {
    display: block;
    margin-bottom: 20px;
}
.radio-buttons .checkbox:last-child {
    margin-bottom: 0;
}
.projects_anketa_wrap {
    display: flex;
    flex-wrap: wrap;
}
.projects_anketa_wrap .anketa_project {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    margin-bottom: 32px;
    width: 280px;
}
.projects_anketa_wrap .anketa_project img {
    width: 100%;
}
.projects_anketa_wrap .anketa_project h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 20px 0 12px 0;
}
.voting-page {
    padding-top: 32px;
}
.voting-page__main-block{
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 32px;
  gap: 32px;
}
.voting-page__main-block .form-blank-wrap{
	margin-left: 40px;
}
.container_mobile-vote{
	display: none;
}
.voting-page__main-block .share-block{
	margin-top: 170px;
}
.voting-page__main-block .article-map-container{
	margin-top: 170px;
}
.voting-page__slider-block{
	padding: 64px 0 100px;
}
#voteMapBlock{
	width: 384px;
    height: 384px;
}
.voting-page__main-block .form-submit-wrap .button, .new-voting-page .form-submit-wrap .button {
	width: 100%;
	max-width: 217px;
}
.your-variant{
	margin-top: 24px;
}
  .voting-page__slider-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
    gap: 12px;
    padding: 0;
  }
.voting-result {
    display: none;
}
.voting-result__item {
   margin-bottom: 16px;
}
.voting-result__row {
    max-width: 560px;
    display: flex;
    margin-bottom: 4px;
    align-items: center;
}
.voting-result__item:last-child, .voting-result__row:last-child {
    margin-bottom: 0;
}
.voting-result__number, .voting-result__icon {
    width: 48px;
    margin-right: 8px;
    text-align: right;
    flex-shrink: 0;
}
.voting-result__icon img {
    display: block;
    margin-left: auto;
}
.voting-result__number {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.87);
}
.voting-result__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.voting-result__scale {
    flex: 1;
}
.voting-result__scale-line {
    width: 0;
    height: 4px;
    background: #028AF3;
    border-radius: 2px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 12;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 10, 17, 0.32);
}
.modal .container {
    min-height: 100%;
    display: flex;
    align-items: center;
}
.modal-body {
    width: 100%;
    max-width: 800px;
    margin: 36px auto;
    padding: 80px 48px 64px 48px;
    background: #FFFFFF;
    position: relative;
    border-radius: 12px;
}
.modal-body__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 24px 0;
}
.modal-body__subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
}
.modal-close-cross {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}
.modal-close-cross svg {
    display: block;
}
.ni-map {
    width: 100%;
    height: 400px;
}
.modal-btn-wrap {
    text-align: center;
    margin-top: 40px;
}
.modal-success {
    text-align: center;
}
.modal-success .modal-body {
    max-width: 446px;
}

.mapboxgl-marker{
	border-radius: 15px;
}

.single-subsidy__block-button{
	max-width: 650px;
	display: flex;
	flex-direction: row;
    justify-content: space-between;
	border: 1px solid rgba(179, 197, 210, 0.3);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 32px;
}
.single-subsidy__mobile{
	display: none;
}
.article-grid p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.article-grid ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin: 40px 0 64px;
  padding-left: 23px;
}
.article-grid li {
  color: #028AF3;
  font-size: 23px;
}
.article-grid h1 {
font-style: normal;
font-weight: 700;
font-size: 40px;
line-height: 48px;
letter-spacing: -0.5px;
color: rgba(0, 0, 0, 0.87);
max-width: 1008px;
width: 100%;
}
.article-grid h3 {
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 36px;
color: rgba(0, 0, 0, 0.87);
}
.article-grid h4 {
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 28px;
letter-spacing: 0.3px;
color: rgba(0, 0, 0, 0.87);
}
.article-grid h6 {
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 24px;
letter-spacing: 0.3px;
color: rgba(0, 0, 0, 0.87);
}
.news-details__person-block{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	background-color: #F3F7FA;
	border-radius: 12px;
	width: 100%;
	max-width: 697px;
	margin: 32px 0 64px;
	padding: 40px 40px 48px;
	gap: 40px;
}
.news-details__person-info{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	gap: 40px;
}
.news-details__person-info > div{
	height: fit-content;
	margin: auto 0;
}
.news-details__person-info h3{
	margin: 0 !important;
}
.news-details__middle-block {
	width: 795px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	gap: 48px;
}
.news-details__middle-block h4 {
max-width: 368px;
width: 49%;
max-height: 172px;
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
padding-top: 24px;
margin: auto 0;
}
.news-details__middle-block h4:before {
position: absolute;
top: 18px;
left: 0;
width: 35%;
border-top: 8px solid #028AF3;
content: "";
}
.news-details__middle-block p {
width: 50%;
max-height: 216px;
}
.tags-block {
	max-width: 680px;
	margin-top: 0;
	margin-bottom: 0;
}
.news-details__before-footer-block{
	margin-top: 148px;
}
.single-subsidy__left-block-button{
	display: flex;
	flex-direction: row;
	gap: 18px;
}
.single-subsidy__left-block-button div{
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.3px;
	color: rgba(0, 0, 0, 0.87);
}
.single-subsidy__link{
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-align: right;
	letter-spacing: 0.5px;
	color: #028AF3;
	text-decoration: none;
}
.form-blank__number-votes{
	width: fit-content;
	font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
	margin:0 auto;
}

.index-section__video-title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 40px;
}

.index-section__video-wrapper {
  position: relative;
}

.index-section__video-mask {
  position: absolute;
  width: 100%;
  height: 99%;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

.index-section__video-button-play {
  position: absolute;
  width: 110px;
  height: 120px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.index-section__video-button-play:hover path {
  fill: rgba(255, 255, 255, 0.9);
}
.index-section__video-open-safari{
	width: calc(100% - 21px);
	margin-left: 10px;
}

.tags-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-top: -24px;
  margin-bottom: 44px;
}

.tags-block__one-tag {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  border: 2px solid rgba(179, 197, 210, 0.3);
  color: rgba(0, 0, 0, 0.87);
  border-radius: 24px;
  padding: 10px 16px;
  cursor: pointer;
  margin-bottom: 4px;
}
.tags-block__one-tag:hover {
  border: 2px solid rgba(179, 197, 210, 0.7);
  color: rgba(0, 0, 0, 0.9);
}
.tags-block_one-news{
	margin-top: 48px;
	margin-bottom: 0;
}

.news-details__wrapper{
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 52px;
}
.news-details__wrapper h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 16px;
}
.news-details__wrapper h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: rgba(0, 0, 0, 0.87);
  margin: 32px 0 40px;
}
.news-details__wrapper h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.87);
}
.news-details__wrapper h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 8px;
}
.news-details__wrapper p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.6);
}
.news-details-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin: 0;
  padding-left: 0;
}
.news-details-block li {
  font-size: 23px;
  list-style-type: none;
  font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}
.news-details-block li:before {
  color: #028AF3;
    content: url("/local/templates/2022/img/circle-li.svg");
    padding-right: 10px;
	top: -2px;
    position: relative;
}
.news-details__wrapper-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.news-details__introduction p {
  width: 100%;
  max-width: 800px;
}
.news-details__introduction .news-details__wrapper-img {
  margin: 48px 0 64px;
}
.news-details__right-block {
  padding-top: 104px;
}
.news-details__left-block {
  padding-top: 32px;
}
.news-details__date {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.4);
}


.news-details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin-bottom: 64px;
}
.news-details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin-bottom: 64px;
}
.news-details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin-bottom: 64px;
}
.news-details-block .news-details__wrapper-img {
  margin: 64px 0;
}
.news-details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin-bottom: 32px;
}
.news-details-block .news-details__wrapper-img {
  margin: 32px 0 64px;
}
.news-details-block .news-details__wrapper-img img{
  margin-bottom: 0;
}
.news-details__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F3F7FA;
  border-radius: 12px;
  width: 100%;
  max-width: 697px;
  margin-bottom: 64px;
  padding: 40px 40px 48px;
  gap: 40px;
}
.news-details-block .news-details__person-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
.news-details-block .news-details__person-info h3 {
  margin-bottom: 16px;
}
.news-details__quote .news-details__person-info > div {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  margin: auto 0;
}
.news-details__quote .news-details__person-info > div > div {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.87);
}
{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 592px;
  margin-bottom: 64px;
}
> div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 48px;
}
.news-details__middle-block {
  width: 795px;
  margin: 32px 0;
  position: relative;
}
.news-details__middle-block h4 {
  max-width: 368px;
  width: 49%;
  max-height: 172px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 24px;
  margin: auto 0;
}
.news-details__middle-block h4:before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 35%;
  border-top: 8px solid #028AF3;
  content: "";
}
.news-details__middle-block p {
  width: 50%;
  max-height: 216px;
}
.news-details__wrapper-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*gap: 32px;*/
}
.news-details__slider-block {
  max-width: 592px;
}
.news-details__slider-block > div {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.6);
  margin: 12px 0 24px;
}
.news-details__slider-block span {
  color: rgba(0, 0, 0, 0.4);
}
.news-details__slider-block .slider-for {
  max-width: 592px;
}
.news-details__slider-block .slider-for img {
  width: 592px;
  height: 336px;
  border-radius: 2px;
}
.news-details__slider-block_voting .slider-for img {
	height: 100%;
}
.news-details__slider-block .slider-nav img {
  width: 136px;
  height: 80px;
}
.news-details__slider-block .slider-nav .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
.news-details__slider-block .slider-nav .slick-slide {
  border-radius: 2px;
  opacity: 0;
}
.news-details__slider-block .slider-nav .slick-active {
  opacity: 0.4;
  cursor: pointer;
}
.news-details__slider-block .slider-nav .slick-center {
  border: 2px solid #028AF3;
  opacity: 1;
  cursor: auto;
}
.news-details__slider-block .slider-nav .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: inherit;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-position: center center;
  border: 1px solid rgba(179, 197, 210, 0.3);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
          box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
  cursor: pointer;
  z-index: 10;
}
.news-details__slider-block .slider-nav .slick-arrow:hover {
  background-color: #F3F7FA;
}
.news-details__slider-block .slider-nav .slick-prev {
  left: 0;
  background-image: url("/local/templates/2022/img/news-details/arrow-slider-left.svg");
}
.news-details__slider-block .slider-nav .slick-next {
  right: 0;
  background-image: url("/local/templates/2022/img/news-details/arrow-slider-right.svg");
}

.tags-block {
  margin-top: 0;
  margin-bottom: 0;
}
.news-details__wrapper-text {
  width: 100%;
  max-width: 592px;
}
#share-block_mobile {
  display: none;
}

.news-details__before-footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F3F7FA;
}
.news-details__before-footer-block .banner-form {
  width: 100%;
  max-width: 1216px;
  margin: 64px auto 100px;
}


.new-voting-page .article-buttons, .new-voting-page .article-map-container {
    margin-top: 170px;
}
.voting-gallery {
    margin-top: 64px;
}
.voting-gallery h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 40px 0;
}
.map-number {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    letter-spacing: 0.5px;
    color: #028AF3;
    border: 2px solid #028AF3;
    border-radius: 50%;
}
.voting-text a {
    text-decoration: underline;
    color: inherit;
}
.g-recaptcha {
    margin-top: 32px;
}

@media (max-width: 1024px) {
  #share-block_mobile {
    display: block;
    margin-top: 32px;
  }
  .news-details__right-block {
    display: none;
  }
  .news-details__left-block {
    width: 100%;
  }
  .news-details__before-footer-block {
    padding: 0 20px;
  }
  .article-grid h1 {
    width: 100%;
}
.article-main-img img{
	width: 100%;
}
.container_desktop-vote{
	display: none;
}
.container_mobile-vote{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
   padding: 32px 20px 0;
   gap: 32px;
}
.container_mobile-vote .page-title, .container_mobile-vote .link-back{
	margin: 0;
}
.voting-page__main-block{
	  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
   margin: 0;
}
.voting-page__main-block .share-block{
	order: 0;
	margin: 0;
}
.voting-page__main-block .form-blank-wrap{
	order: 1;
	margin-left: 0;
}
.voting-page__main-block .article-map-container{
	order: 2;
}
.voting-page__main-block .article-map-container{
	margin: 0;
}
.voting-page__main-block .form-submit-wrap {
	margin-top: 32px;
}
#voteMapBlock{
	width: 100%;
}
.voting-page__slider-block.container_mobile-vote{
	max-width: 592px;
	margin: 0 auto;
	padding-bottom: 64px;
}
.voting-page__slider-block.container_mobile-vote h2{
	margin: 16px 0 0;
}
.voting-page__slider-block.container_mobile-vote .slider-for{
	margin-top: 0;
}
.voting-page__slider-block.container_mobile-vote .slider-nav{
	margin-bottom: 0;
}
/*.voting-page__slider{
    height: 336px;
}*/
}
@media (max-width: 820px) {
  .news-details__middle-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-details__middle-block h4:before {
    top: 6px;
  }
}
@media (max-width: 768px) {
	html, body{
		overflow-x: hidden !important;
	}
	.news-details__signature-belonging{
		width: fit-content;
	}
	.article-grid h1 {
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.3px;
	}
	.article-grid .link-back {
		margin-left: 20px;
	}
  .news-details__wrapper h2 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
  }
  .news-details__wrapper h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
  }
  .news-details__wrapper h6 {
    margin-bottom: 12px;
  }
  .news-details__left-block {
    padding-top: 24px;
  }
  .slider-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
    gap: 12px;
    padding: 0;
  }
  .slick-dots li {
    list-style: none;
    width: 8px;
    height: 8px;
  }
  .slick-dots button {
    position: absolute;
    font-size: 0;
    width: 8px;
    height: 8px;
    background-color: rgba(63, 144, 206, 0.12);
    border-radius: 50%;
    padding: 0;
    border: none;
  }
  .slick-dots .slick-active {
    opacity: 1 !important;
  }
  .slick-dots .slick-active button {
    background-color: #028AF3;
  }
  .news-details__introduction .news-details__wrapper-img {
    margin: 32px 0 48px;
  }
  .news-details-block {
    margin-bottom: 48px;
  }
  .news-details-block {
    margin-bottom: 40px;
  }
  .news-details-block {
    margin-bottom: 40px;
  }
  .news-details-block h3 {
    margin-bottom: 40px;
  }
  .news-details-block .news-details__wrapper-img {
    margin: 32px 0 48px;
  }
  .news-details-block {
    margin-bottom: 48px;
  }
  .news-details-block .news-details__wrapper-img {
    margin: 32px 0 48px;
  }
  .news-details-block ul {
    margin: 32px 0 40px;
  }
  .news-details__quote {
    margin-bottom: 48px;
  }
  .news-details__middle-block {
    width: 122%;
    margin: 40px 0 24px;
    gap: 40px;
  }
  .news-details__middle-block h4 {
    max-width: none;
    width: 100%;
  }
  .news-details__middle-block h4::before {
    top: 0;
    width: 51%;
  }
  .news-details__middle-block p {
    width: 100%;
  }
  .news-details__before-footer-block .banner-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: 48px 0 64px;
  }
  .news-details__wrapper-img{
	  margin-bottom: 48px;
  }
.news-details__wrapper p{
	margin-bottom: 24px;
}
.news-details__wrapper h2 {
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.3px;
}
.news-details__wrapper h3 {
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.3px;
	margin-bottom: 32px;
}
.news-details__wrapper h6 {
	margin-bottom: 12px;
}
.news-details-block .news-details__wrapper-img{
	margin-left: 0;
	width: 112%;
}
}
@media (max-width: 540px) {
    .news-details__wrapper-img img {
     width: 108%;
    margin-left: -20px; 
  }
  .news-details__left-block .link-back {
    margin-left: 20px;
  }
  .news-details__quote {
    gap: 24px;
    padding: 32px 16px;
  }
  .news-details__quote .news-details__person-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .news-details__quote .news-details__person-info h3 {
    margin-bottom: 8px;
  }
  .news-details__quote .news-details__person-info img {
    width: 100%;
    margin: 0 auto;
    max-width: 120px;
  }
  .news-details__quote .news-details__person-info > div {
    text-align: center;
  }
  .news-details__quote .news-details__person-info > div > div {
    width: 80%;
    margin: 0 auto;
  }
  .news-details__middle-block {
    width: 100%;
  }
  .news-details__slider-block {
    max-width: 100%;
    margin-left: -20px;
  }
  .news-details__slider-block > div:nth-child(2) {
    padding: 0 20px;
  }
  .news-details__slider-block .slider-for {
    max-width: none;
    width: 112%;
    margin-left: -20px;
  }
  .news-details__before-footer-block .banner-form__content {
    width: 100%;
  }
  .news-details__before-footer-block {
    margin-top: 64px;
	}
  .news-details__person-block{
	padding: 32px 16px;
  }
  .news-details__person-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .news-details__wrapper-text{
	  gap: 0;
  }
  .news-details__person-info h3 {
    margin-bottom: 8px;
  }
  .news-details__person-info img {
    width: 100%;
    margin: 0 auto;
    max-width: 120px;
  }
  .news-details__person-info > div {
    text-align: center;
  }
  .news-details__person-info > div > div {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 414px) {
  .news-details__wrapper img {
    width: 111%;
  }
  .news-details__slider-block {
    max-width: 100%;
    margin-left: 0;
  }
  .news-details__slider-block > div:nth-child(2) {
    padding: 0;
  }
  .news-details__slider-block .slider-for {
    width: 111%;
  }
}
@media (max-width: 393px) {
  .news-details__wrapper img {
    width: 112%;
  }
  .news-details__slider-block .slider-for {
    width: 112%;
  }
  .news-details__middle-block h4 {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .news-details__middle-block p {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
@media (max-width: 360px) {
  .news-details__wrapper img {
    width: 113%;
  }
  .news-details__slider-block .slider-for {
    width: 113%;
  }
}

@media (max-width:1200px) {
    .popular-grid {
        display: block;
    }
    .popular-grid__left {
        margin-bottom: 64px;
    }
    .index-section-popular__head {
        justify-content: space-between;
    }
    .activity-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    .activity-block__title {
        margin-top: 0;
    }
    .project-card {
        max-width: none;
    }
    .article-grid {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
    }
    .article-head_desktop {
        display: none;
    }
    .article-head_mobile {
        display: block;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .article-buttons {
        order: 0;
        margin-top: 0;
        margin-bottom: 48px;
    }
    .article-map-container {
        order: 1;
        margin-top: 0;
        margin-bottom: 48px;
    }
    .new-voting-page .article-buttons, .new-voting-page .article-map-container {
        margin-top: 0;
    }
    .article-detail {
        order: 2;
    }
    .article-text iframe {
        height: 450px;
    }

}
@media (max-width:1024px) {
    body.preventMobileScroll {
        overflow: hidden;
    }
    .header {
        position: relative;
        z-index: 12;
    }
    .header__container {
        height: 55px;
        min-height: unset;
    }
    .header__logo img {
        width: 152px;
    }
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__burger.active .header__burger-icon {
        display: none;
    }
    .header__burger.active .header__burger-close {
        display: block;
    }
    .header__nav.active {
        display: block;
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 56px);
        background-color: #ffffff;
        position: absolute;
        top: 56px;
        margin-left: -20px;
        overflow-y: auto;
        padding: 32px 0 64px 0;
    }
    .header__nav.active li {
        margin: 0;
    }
    .header__nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 20px;
        line-height: 28px;
    }
    .footer__content {
        display: block;
    }
    .footer__left, .footer__nav {
        margin-bottom: 40px;
    }
    .projects-filters__item {
        width: calc(50% - 16px);
        margin-right: 32px;
    }
    .projects-filters__item:nth-child(2n + 2) {
        margin-right: 0;
    }
    .projects-search {
        width: calc(50% - 16px);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid .news-card__img {
        height: 244px;
    }
    .social-projects {
        flex-direction: column; 
    }
    .social-projects__list {
        width: 100%;
    }
    .social-projects__map {
        width: 100%;
        height: 360px;
    }
    .documents-list {
        max-width: none;
    }
    .index-news-grid {
        grid-template-columns: repeat(4, 280px);
        overflow-y: auto;
        padding-bottom: 8px;
    }
    .article-grid, .article-head_mobile {
        max-width: none;
    }
    .article-news-slider {
        display: flex;
        overflow-y: auto;
    }
    .article-news-slider .news-card {
        width: 280px;
        flex-shrink: 0;
    }
    .form-blank-wrap {
        max-width: none;
    }
    .banner-form__img {
        margin: 0;
    }
	.index-section__video-open-safari{
		width: calc(100% - 16px);
		margin-left: 8px;
	}
}
@media (max-width:768px) { 
    
    .footer__content {
        padding-top: 30px;
        padding-bottom: 64px;
    }
    .footer__logo img {
        width: 320px;
    }
    .index-section, .discussions-section, .others-section {
        margin-bottom: 64px;
    }
    .section-head {
        margin-bottom: 32px;
    }
    .section-head .section-link {
        display: none;
    }
    .section-link-mobile {
        display: block;
    }
    .section-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 32px;
    }
    .popular-grid__left {
        margin-bottom: 48px;
    }
    .activity-buttons {
        grid-template-columns: repeat(1, 1fr);
    }
    .projects-list {
        margin-left: -20px;
        margin-right: -20px;
    }
    .project-line, .social-projects__list .project-line {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 16px 7px 16px;
        min-height: unset;
    }
    .project-line:last-child, .social-projects__list .project-line:last-child {
        padding-bottom: 8px;
    }
    .project-line__text {
        margin-right: 0;
        margin-bottom: 4px;
    }
    .project-line__number {
        margin-right: 8px;
    }
    .project-line__rate-btns {
        align-self: flex-end;
    }
    .social-projects {
        border-radius: 0;
        margin-left: -20px;
        margin-right: -20px;
    }
    .discussins-page {
        padding-top: 24px;
    }
    .discussions-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 40px;
    }
    .discussion-card__img {
        height: 280px;
        margin-bottom: 16px;
    }
    .discussion-card__title {
        margin-bottom: 12px;
    }
    .projects-row {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;
    }
    .link-back {
        margin-bottom: 32px;
    }
    .page-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 32px;
    }
    .projects-head {
        padding-top: 24px;
    }
    .projects-head__title {
        margin-bottom: 24px;
    }
    .tabs-nav {
        margin-bottom: 24px;
    }
    .tabs-nav__link {
        padding: 8px 18px;
    }
    .projects-list-tab, .projects-map-tab {
        padding-bottom: 64px;
    }
    .project-card {
        flex-direction: column;
        min-height: unset;
    }
    .project-card__img {
        width: 100%;
        height: 320px;
    }
    .project-card__content {
        width: 100%;
        padding: 12px 16px 4px 16px;
    }
    .project-card__text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
    .news-page, .article-page {
        padding: 24px 0 64px 0;
    }
    .news-grid {
        grid-column-gap: 20px;
        grid-row-gap: 40px;
    }
    .index-news-grid {
        grid-column-gap: 20px;
    }
    .news-grid .news-card__img {
        margin-bottom: 16px;
    }
    .news-grid .news-card__title {
        margin-bottom: 12px;
    }
    .load-more-btn {
        margin-top: 40px;
    }
    .projects-map {
        height: 600px;
    }
    .banner-form {
        padding: 32px 24px 24px 24px ;
    }
    .banner-form__title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0.3px;
        margin-bottom: 16px;
    }
    .banner-form__text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .banner-form__button {
        margin-top: 8px;
    }
    .document__button {
        display: none;
    }
    .document {
        padding: 14px;
    }
    .document__icon {
        margin-right: 12px;
    }
    .document__info {
        max-width: calc(100% - 60px);
    }
    .current-video-container {
        margin-bottom: 40px;
    }
    .article-head {
        margin-bottom: 32px;
    }
    .article-buttons {
        margin-bottom: 32px;
    }
    .article-map {
        height: 320px;
    }
    .article-title  {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0.3px;
    }
    .article-main-img {
        margin-bottom: 32px;
    }
    .article-text h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .article-text h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .article-text iframe {
        height: 360px;
    }
    .article-news-slider .news-card {
        margin-right: 20px;
    }
    .article-section {
        margin: 48px 0;
    }
    .article-numbers {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 12px
    }
    .other-items {
        padding-top: 64px;
    }
    .article-main-video {
        margin-bottom: 32px;
    }
    .share-btns {
        left: 12px;
        margin-left: 0;
        top: 100%;
        margin-top: 8px;
    }
    .article-gallery-nav {
        display: none;
    }
    .article-gallery-for__slide img {
        max-height: 400px;
    }
    .form-page {
        padding: 24px 0 64px 0;
    }
    .form-blank-section {
        padding: 24px 20px 32px 20px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        margin-bottom: 20px;
    }
    .attach-buttons {
        display: block;
    }
    .attach-button {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 32px;
    }
    .attach-button:last-child {
        margin-bottom: 0;
    }
    .form-submit-wrap {
        margin-top: 40px;
    }
    .modal-body {
        padding: 48px 32px 40px 32px;
        text-align: center;
    }
    .modal-map .modal-body {
        padding-left: 24px;
        padding-right: 24px;
    }
    .modal-body__title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0.3px;
        margin-bottom: 16px;
    }
    .modal-body__subtitle {
        margin-bottom: 24px;
    }
    .modal-btn-wrap {
        margin-top: 24px;
    }
    .ni-map {
        height: 280px;
    }
    .forms-page, .form-page {
        padding: 24px 0 64px 0;
    }
    .voting-page {
        padding-top: 24px;
    }
    .forms-page__subtitle {
        max-width: none;
        margin-bottom: 40px;
    }
    .region_and_address {
        flex-direction: column;
        align-items: flex-start;
        width: 280px;
    }
    .region_and_address span.or {
        margin: 8px 0;
    }
    .form-page__title {
        margin-bottom: 16px;
    }
    .form-page__subtitle, .form-page__text {
        max-width: none;
    }
    .form-page__subtitle {
        margin-bottom: 20px;
    }
    .form-page__text {
        margin-bottom: 48px;
    }
    .form-step__title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .projects_anketa_wrap {
        justify-content: space-between;
    }
    .projects_anketa_wrap .anketa_project {
        width: 48%;
        width: calc(50% - 12px);
        margin-right: 0;
    }
    .projects-additional {
        flex-direction: column;
        align-items: flex-start;
    }
    .projects-additional__divider {
        display: none;
    }
    .projects-number {
        margin-bottom: 8px;
    }
    .page-404 {
        padding-top: 80px;
        padding-bottom: 112px;
    }
    .page-404__title {
        font-size: 92px;
    }
	.single-subsidy__mobile{
		display: flex;
		text-decoration: none;
		padding: 15px 20px;
		margin-bottom: 24px;
	}
	.single-subsidy__desktop{
		display: none;
	}
	.single-subsidy__left-block-button svg{
		margin: auto 0;
	}
	.index-section__video-button-play{
		width: 60px;
		height: 60px;
	}
	.index-section__video-button-play svg{
		width: 60px;
		height: 60px;
	}
	.index-section__video-title{
		font-size: 24px;
		line-height: 28px;
		letter-spacing: 0.3px;
		margin-bottom: 32px;
	}
	.tags-block {
		margin-top: -8px;
		margin-bottom: 28px;
	}
	.tags-block_one-news{
		margin-top: 48px;
		margin-bottom: 0;
	}

    .voting-gallery {
        margin-top: 48px;
    }
    .voting-gallery h2 {
        font-size: 20px;
        line-height: 24px;
    }
}
@media (max-width:480px) {
    .intro {
        padding-top: 64px;
    }
    .intro__buttons {
        flex-direction: column;
    }
    .intro__buttons .button {
        margin-right: 0;
        margin-bottom: 12px;
        width: 100%;
    }
    .intro__buttons .button:last-child {
        margin-bottom: 0;
    }
    .projects-filters {
        margin-bottom: 8px;
    }
    .projects-filters__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .projects-search {
        width: 100%;
    }
    .project-card__img {
        height: 236px;
    }
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .discussion-card__img {
        height: 208px;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }
    .current-video-container, .article-main-video {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding-bottom: 56.25vw;
    }
    .banner-form {
        flex-direction: column;
    }
    .banner-form__content {
        width: 100%;
        margin-bottom: 24px;
    }
    .banner-form__img {
        width: 100%;
        max-width: none;
    }
    .project-sm-card__img {
        height: 236px;
    }
    .article-text iframe, .article-gallery-nav__slide, .article-gallery-nav__slide.slick-current {
        height: 200px;
    }
    .article-main-img img {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .form-submit-wrap .button {
        width: 100%;
        margin: 0;
        margin-bottom: 12px;
    }
    .form-submit-wrap .button:last-child {
        margin-bottom: 0;
    }
    .form_stars .starline {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .form_stars .starline span {
        margin: 0 0 8px 0;
    }
    .form-group-input_wide, .form-group-message {
        max-width: none;
    }
    .form-group-input .form-input {
        max-width: none;
    }
    .form-group-input .select {
        width: 100%;
    }
    .region_and_address {
        width: 100%;
    }
    .projects_anketa_wrap .anketa_project {
        width: 100%;
    }
    .page-404__button {
        width: 100%;
    }
	.index-section__video-button-play{
		width: 32px;
		height: 36px;
	}
	.index-section__video-button-play svg{
		width: 32px;
		height: 36px;
	}
	.index-section__video-open-safari{
		width: calc(100% - 6px);
		margin-left: 3px;
	}
}