@font-face {
    font-family: "Moscow sans";
    src: url("../fonts/Moscow sans.eot");
    src: url("../fonts/Moscow sans.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Moscow sans.woff") format("woff"),
        url("../fonts/Moscow sans.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    color: #262526;
    background: #fff;
    font-family: 'Moscow sans', sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    margin: 0;
    padding: 0;
}

.title {
    font-weight: 500;
    font-size: 40px;
    background: #1253a5;
    color: #fff;
    padding: 20px 0;
}

.title span {
    margin-left: 5%;
}

#main {
    position: relative;
}

#main .title {
    color: #fff;
    font-size: 72px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
    background: unset;
    padding: unset;
}

#main .text_block {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 400px;
}

#video {
    z-index: 1;
    position: relative;
}

#program {
    margin-bottom: 40px;
}

#program picture {
    pointer-events: none;
}

#bio,
#constituency,
#video {
    background: #fff;
}

#constituency,
#media {
    padding: 0;
}

#media {
    background: #1253a5;
}

#feedback,
#contacts {
    background: #003399;
}

#media .title {
    color: #fff;
}

.btn {
    display: table;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    outline: 0px;
    position: relative;
    font-family: 'Roboto', sans-serif;
    border: 0;
    background: #ee1d23;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
}

.btn:after {
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-size: 200% 100%;
    background-position: 200% 0;
    background-repeat: no-repeat;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .0) 30%, rgba(255, 255, 255, .8), rgba(255, 255, 255, .0) 70%);
}

.btn:hover:after {
    transition: .5s linear;
    background-position: -200% 0;
}

.btn_block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 50px 0;
}

.header {
    color: #fff;
    height: 60px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    position: absolute;
    z-index: 99;
    background: #00000026;
    backdrop-filter: blur(10px);
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header_content div {
    text-transform: uppercase;
    margin: 0 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.header_content div a {
    color: #fff;
}

.brand img {
    width: 100px;
    height: auto;
}

#main {
    padding: 40px 0 0;
    height: calc(100vh - 40px);
    display: flex;
    justify-content: center;
    background: url(../img/background.jpg) center center no-repeat;
    background-size: cover;
}

#main img {
    margin-top: 150px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.blocks_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.block_left {
    width: 30%;
    margin-left: 10%;
    z-index: 10;
}

.block_rigth {
    width: 660px;
    bottom: -5px;
    position: absolute;
    right: 5%;
    overflow: hidden;
}

#video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 40px 0;
    margin: 0 0 90px;
}

#video .subtitle,
#feedback .subtitle {
    font-size: 40px;
}

.video_block {
    width: 45%;
}

.video_block img {
    width: 100%;
    height: auto;
}

.video_block iframe {
    width: 600px;
    height: 300px;
}

.video_content {
    width: 35%;
    margin-left: 50px;
}

.program_block {
    display: block;
    min-height: 600px;
    color: #1253a5;
    max-width: 500px;
    width: 50%;
    margin-left: 20%;
}

.program_block_double {
    min-height: 820px;
}

.program_block_inner {
    padding-top: 100px;
}

.subtitle {
    position: relative;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1px;
    color: #1253a5;
    margin-bottom: 40px;
}

.subtitle:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #ee1d23;
}

.text {
    font-size: 18px;
}

.cards_list {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#media .cards_list {
    width: 90%;
    margin: auto;
}

.media_card {
    width: calc(30% - 20px);
    margin: 10px;
    height: 250px;
    background: #fff;
    outline: none;
    position: relative;
    filter: drop-shadow(0px 3px 4px rgba(42, 49, 82, 0.4));
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.media_card:hover {
    transform: translateY(-5px);
}

.media_card_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: calc(100% - 20px);
    padding: 10px 15px;
}

.media_card_image {
    position: relative;
    /* display: flex; */
}

.media_card_image img {
    width: 100%;
    height: auto;
}

.media_card_badge {
    position: absolute;
    border-radius: 4px;
    margin: 10px;
    padding: 4px 8px;
    background: #1253a4;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

.media_card_shadow {
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
}

.media_card_text {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
    z-index: 10;
}

.media_card_date {
    font-size: 14px;
    color: #ffffffa3;
    z-index: 10;
}

.contacts_content {
    width: 90%;
    margin: auto;
    border-top: 1px solid #6c85c3;
    padding: 40px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contacts_content_title {
    font-size: 18px;
    max-width: 220px;
}

.contacts_address {
    font-size: 14px;
    max-width: 220px;
    color: #6c85c3;
    margin-top: 10px;
}

.contacts_phone {
    font-size: 24px;
    text-align: right;
    display: block;
    color: #fff;
}

.contacts_mail {
    color: #6c85c3;
    margin-top: 5px;
    text-align: right;
    display: block;
}

.social {
    display: flex;
}

.social a {
    flex-basis: 50px;
    height: initial;
    display: flex;
    align-items: center;
    border-radius: 4px;
    margin: 0 10px;
    padding: 10px;
    background: #1253a4;
}

.social a:hover {
    background: #1d68c6;
}

.social a img {
    width: 30px;
    height: auto;
}

.footer {
    color: #fff;
    padding: 20px 0;
    background: #023398;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer_list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer_list div {
    text-transform: uppercase;
    margin: 0 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.footer_info {
    display: flex;
    text-align: center;
    max-width: 960px;
    opacity: 0.4;
    margin: 30px auto 10px;
    padding: 0 10px;
    font-size: 10px;
}

.copyright {
    font-size: 12px;
}

.bio_content {
    width: 90%;
    margin: 70px auto 50px;
}

.bio_footer {
    border-top: 2px dashed #ee1d23;
    margin-top: 20px;
    padding-top: 10px;
}

.bio_table {
    border-collapse: collapse;
}

.table_row {
    display: table-row;
}

.table_row_key {
    color: #1253a5;
    position: relative;
    width: 120px;
    padding-right: 30px;
    text-align: right;
    border-right: 2px solid #ee1d23;
    font-size: 20px;
    font-weight: 900;
}

.table_row_top .table_row_key,
.table_row_bootom .table_row_key {
    vertical-align: top;
}

.table_row_info {
    padding: 30px 0 30px 40px;
}

.table_row_top .table_row_info,
.table_row_bootom .table_row_info {
    padding-top: 0;
}

.table_row_bootom .table_row_key {
    border-right: 0;
}

.table_row_key:before {
    content: '';
    position: absolute;
    top: 45%;
    right: -7px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: 2px solid #ee1d23;
    border-radius: 100%;
}

.table_row_top .table_row_key::before,
.table_row_bootom .table_row_key::before {
    top: 0;
}

.map_block {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.map_block iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.map_popup {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 50%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.map_popup_content {
    font-size: 20px;
    background: #1253a5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.map_popup_content img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

#form-petition {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 400px;
}

#form-petition .btn {
    width: 100%;
}

#form-petition textarea {
    width: calc(100% - 20px) !important;
}

.input {
    font-size: 20px;
    height: 40px;
    line-height: 24px;
    padding-left: 20px;
    outline: 0px;
    width: calc(100% - 20px);
    border-radius: 5px;
    border: 0;
    margin: 10px;
    color: #1253a4;
    font-family: 'Moscow sans', sans-serif;
}

textarea {
    min-height: 80px;
    max-width: 500px !important;
    max-height: 300px !important;
}

/* popup */
.popup-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    background: rgba(53, 70, 80, .5);
    box-sizing: border-box;
}

.popup-overlay.is-active {
    display: block;
}

.popup-overlay.is-active .popup {
    display: inline-block;
}

.popup-scroll {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.popup-wrapper {
    display: table;
    margin: 40px 20px;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
}

.popup-holder {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

.popup {
    position: relative;
    display: none;
    background: #fff;
    max-width: 500px;
    min-width: 300px;
    min-height: 100px;
    box-sizing: border-box;
}

.popup .title {
    padding: 10px;
    font-size: 20px;
}

.popup .text {
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.feedback_block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.feedback_image {
    width: 40%;
}

.feedback_block img {
    width: 100%;
    height: auto;
}

.feedback_content .subtitle {
    color: #fff;
}

.feedback_content .text {
    max-width: 400px;
    color: #fff;
    margin: 20px 0;
}

.feedback_content {
    width: 40%;
    margin-left: 8%;
}

/* new */
.container_new {
    align-items: center;
}

.container_new {
    text-align: center;
    flex-direction: column;
}

.container_new .media_card {
    height: unset;
    background: unset;
}

.container_new .text_block {
    font-size: 32px !important;
    max-width: unset !important;
    max-width: 1000px;
    padding: 0 20px;
}

.container_new .text_block_date {
    color: #fff;
    opacity: 0.8;
    font-size: 38px;
    cursor: pointer;
}

.bounce {
    -webkit-animation: slide-bottom .7s linear infinite alternate;
    animation: slide-bottom .7s linear infinite alternate;
}

@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.container_new .text {
    width: 90%;
    margin: auto;
    text-align: left;
    padding: 20px 0 40px;
    color: #fff;
}

.container_new .media_card:hover {
    transform: translateY(0);
}

.container_new .subtitle {
    color: #fff;
    opacity: 0.7;
    font-size: 18px;
    margin-bottom: 10px;
}

.container_new .subtitle:after {
    content: none;
}

.slick-slide img {
    width: 100% !important;
}

.slick-prev:before,
.slick-next:before {
    color: #fff !important;
    font-size: 50px !important;
}

.slick-slide {
    padding: 0 60px !important;
}

.slick-prev {
    left: 0 !important;
}

.slick-next {
    right: 0 !important;
    width: unset !important;
    height: unset !important;
}

.slick-dots li.slick-active button:before {
    color: #000 !important;
}

/* checkbox */
.md-checkbox {
    position: relative;
    margin: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.md-checkbox.md-checkbox-inline {
    display: inline-block;
}

.md-checkbox .md-label span {
    cursor: pointer;
}

.md-checkbox .md-label {
    padding-left: 20px;
    display: inline;
    color: #fff;
}

.md-checkbox label:before, .md-checkbox label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.md-checkbox label:before {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.md-checkbox input[type="checkbox"] {
    outline: 0;
    /* visibility: hidden; */
    opacity: 0;
    display: block;
    font-size: inherit;
}

.md-checkbox input[type="checkbox"]:checked+label:before {
    background: #337ab7;
    border: none;
}

.md-checkbox input[type="checkbox"]:checked+label:after {
    transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
    width: 10px;
    height: 5px;
    border: 2px solid #fff;
    border-top-style: none;
    border-right-style: none;
    margin-top: 15px;
}

.md-checkbox input[type="checkbox"]:disabled+label:before {
    border-color: rgba(0, 0, 0, 0.26);
}

.md-checkbox input[type="checkbox"]:disabled:checked+label:before {
    background: rgba(0, 0, 0, 0.26);
}

/* burger */
.nav input[type=checkbox] {
    display: none;
}

.nav label {
    cursor: pointer;
}

.nav {
    user-select: none;
}

.nav__showmenu {
    position: relative;
}

.nav__showmenu img {
    width: 25px;
    height: auto;
}

.nav__back {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color .3s;
}

.header_mobile_content {
    display: none;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    margin: 10px;
    padding: 10px;
    text-transform: uppercase;
    line-height: 2em;
    background: #1253a5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(120%);
    transition: transform .3s;
    will-change: transform;
    backface-visibility: hidden;
}

.menu div {
    padding: 10px;
    cursor: pointer;
}

.menu div a {
    color: #fff !important;
}

.menu__submenu {
    font-size: .8em;
    background-color: #ddd;
    max-height: 0;
    transition: max-height .3s ease-in-out;
}

.menu__showsub {
    position: absolute;
    right: 0;
    margin-top: -34px;
    padding: 10px;
    line-height: normal;
}

.menu__item {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.menu__submenu .menu__item {
    color: #000;
}

.nav__check:checked~.nav__back {
    display: block;
    background-color: rgba(0, 0, 0, .2);
    bottom: 0;
}

.menu__item:hover, .nav__showmenu:hover, .menu__showsub:hover {
    opacity: 0.7;
}

.menu::-webkit-scrollbar {
    display: none;
}

.nav__check:checked+.nav__showmenu {
    color: #fff;
}

.menu__check:checked~.menu__submenu {
    max-height: 100vh;
}

.menu__check:checked+.menu__showsub {
    transform: rotate(180deg);
}

.nav__check:checked~.menu {
    transform: translateX(0);
}

::-webkit-input-placeholder {
    color: #00000026;
    opacity: 1;
}

::-moz-placeholder {
    color: #00000026;
    opacity: 1;
}

:-moz-placeholder {
    color: #00000026;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #00000026;
    opacity: 1;
}

input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 1300px) {
    .video_block iframe {
        width: 450px;
        height: 225px;
    }
}

@media (max-width: 1200px) {
    .block_left {
        width: 40%;
    }
}

@media (max-width: 1100px) {
    .feedback_content {
        margin-left: 4%;
    }
}

@media (max-width: 1000px) {
    .media_card {
        width: calc(50% - 20px);
    }

    .video_block {
        width: 50%;
    }

    .contacts_content_title,
    .contacts_address {
        max-width: unset;
        text-align: center;
    }

    .contacts_block {
        margin-top: 20px;
        text-align: center;
    }

    .contacts_phone,
    .contacts_mail {
        text-align: center;
    }

    .contacts_content {
        flex-direction: column;
        padding: 40px 0 20px;
    }

    #video .subtitle,
    #feedback .subtitle {
        font-size: 24px;
    }

    .video_content .text {
        font-size: 16px;
    }

    .block_rigth {
        width: 600px;
    }
}

@media (max-width: 900px) {
    #main .title {
        font-size: 52px;
    }

    .container_new .text_block {
        font-size: 32px !important;
    }

    #main .text_block {
        font-size: 16px;
    }

    #main .btn {
        font-size: 16px;
    }

    .feedback_block {
        flex-direction: column;
    }

    .feedback_image {
        display: none;
    }

    .feedback_content {
        width: unset;
        margin-left: 0;
    }

    .title {
        font-size: 36px;
    }

    #video {
        flex-direction: column-reverse;
        padding: 50px 40px 0;
        margin: 0 0 50px;
    }

    .bio_content {
        margin: 50px auto 10px;
    }

    .feedback_block {
        padding: 50px 0;
    }

    .video_block,
    .video_content {
        width: unset;
    }

    .video_content {
        margin: 0 0 30px 0;
    }

    .header {
        justify-content: space-between;
        width: calc(100% - 40px);
        padding: 15px 20px;
        backdrop-filter: unset;
    }

    .header_mobile_content {
        display: block;
    }

    .footer_content {
        flex-direction: column-reverse;
    }

    .footer_list {
        margin-bottom: 10px;
    }

    .header_content {
        display: none;
    }

    .bio_table tr,
    .bio_table td {
        display: block;
    }

    .table_row {
        position: relative;
        border-left: 2px solid #ee1d23;
    }

    .table_row_key:before {
        display: none;
    }

    .table_row:before {
        content: '';
        position: absolute;
        top: 5px;
        left: -7px;
        width: 8px;
        height: 8px;
        background-color: #fff;
        border: 2px solid #ee1d23;
        border-radius: 100%;
    }

    .table_row_top::before,
    .table_row_bootom::before {
        top: 0;
    }

    .table_row_bootom {
        border: 0;
    }

    .table_row_key {
        width: unset;
        text-align: left;
        padding-left: 30px;
        border: 0;
        padding-bottom: 5px;
    }

    .table_row_info {
        padding: 0 0 30px 30px;
    }
}

@media (max-width: 800px) {
    .map_popup {
        display: none;
    }

    .block_rigth {
        width: 500px;
        right: 0;
    }

    .block_left {
        margin-left: 5%;
    }
}

@media (max-width: 700px) {
    .block_rigth {
        width: 400px;
    }

    .media_card {
        width: calc(100% - 20px);
        height: 350px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 30px !important;
    }

    .slick-slide {
        padding: 0 30px !important;
    }
}

@media (max-width: 600px) {
    .video_block iframe {
        width: unset;
        height: unset;
    }

    .cards_list {
        padding-bottom: 20px;
    }

    .map_block iframe {
        height: 400px;
    }

    .feedback_content {
        width: 90%;
    }

    #form-petition {
        width: 100%;
    }

    textarea {
        max-width: 520px !important;
    }

    .title {
        font-size: 24px;
        padding: 15px 0;
    }

    .footer_list {
        display: none;
    }

    .video_content {
        margin: 0 0 20px 0;
    }

    .block_left {
        width: 90%;
    }

    .block_left {
        margin-bottom: 80%;
    }

    #main .title {
        font-size: 36px;
    }

    #main .text_block {
        margin-bottom: 20px;
    }

    .container_new .text_block {
        font-size: 22px !important;
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .md-checkbox .md-label {
        font-size: 13px;
    }

    .contacts_address {
        max-width: 220px;
    }

    .map_block iframe {
        height: 300px;
    }

    #video {
        padding: 50px 20px 0;
    }

    .table_row {
        border: 0;
    }

    .table_row:before {
        display: none;
    }

    .table_row_info,
    .bio_footer {
        padding: 0 0 20px 0;
        font-size: 14px;
    }

    .table_row_key {
        padding-left: 0;
    }

    .bio_content {
        margin-top: 20px;
    }

    .media_card {
        height: 200px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 16px !important;
    }

    .slick-slide {
        padding: 0 16px !important;
    }

    .container_new .text {
        font-size: 14px;
    }

    .container_new .text_block_date {
        font-size: 30px;
    }
}

@media (max-width: 340px) {
    .media_card_text {
        font-size: 14px;
    }

    .media_card_date {
        font-size: 12px;
    }
}

@media (max-width: 300px) {
    .copyright {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .copyright span {
        margin-top: 5px;
    }
}

@media (max-height: 800px) and (min-width: 800px) {
    .block_rigth {
        top: 0;
    }
}

@media (max-height: 700px) and (max-width: 400px) {
    .block_rigth {
        width: 250px;
    }

    .block_left {
        margin-bottom: 50%;
    }
}

@media (max-height: 570px) and (max-width: 400px) {
    .block_rigth {
        width: 200px;
    }

    .block_left {
        margin-bottom: 50%;
    }
}

.input_wrapper {
    width: 100%;
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.input_file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    display: flex;
}

.input_file_label {
    display: block;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    outline: 0px;
    width: calc(100% - 22px);
    border-radius: 8px;
    border: 0;
    margin: 10px;
    color: #ffffff;
    font-family: 'Moscow sans', sans-serif;
    border: 1px dashed #fff;
    padding: 10px;
    margin: 0;
}
