@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700&subset=cyrillic');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700&subset=cyrillic');

/* body
----------------------------------------------------------------------------------------------------------------------*/
:root {
    --color1: #4da58c;
    --color2: #376e56;
    --color3: #009cff;
    --color4: #005b9b;
    --color5: #00030a;
    --color6: #151515;
    --color7: #221f1f;
    --color8: #757578;
    --color9: #9b9b9b;
    --color10: #9f9f9f;
    --color11: #d3d3d6;
    --color12: #e8e8e8;

    --font1: 'Noto Sans', sans-serif;
    --font2: 'Roboto Slab', sans-serif;
}

html,
body {
    width: auto;
    min-width: 600px;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    font-weight: 400;
    font-family: var(--font1);
}
body.veil-on {
    overflow-y: hidden;
}
.wrap {
    width: auto;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.veil {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    position: fixed;
    overflow: hidden;
    z-index: 9;
}
div {
    outline: none!important;
}
img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    outline: none!important;
}
a {
    outline: none!important;
}
button {
    outline: none!important;
}
.alert {
    margin: 0;
    border-radius: 0;
}

@media (min-width: 768px) {
    .veil {
        display: none!important;
    }
}

/* toTop
-------------------------------------------------------------------------------------*/
.toTop {
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 0;
    left: 20px;
    bottom: 56px;
    background: var(--color5);
    display: block;
    text-decoration: none;
    text-align: center;
    position: fixed;
    transition: all 0.2s;
    opacity: 0;
    z-index: -1;
}
.toTop.on {
    opacity: 1;
    z-index: 99;
}
.toTop:hover {
    background: var(--color3);
}
.toTop span {
    font-size: 30px;
    color: #fff;
    line-height: 42px;
}

@media (max-width: 767px) {
    .toTop {
        display: none;
    }
}

/* input
-------------------------------------------------------------------------------------*/
form .form-group input[type='text'] {
    height: 44px;
    margin: 0;
    font-size: 15px;
    color: var(--color5);
    border-radius: 0;
}
form .form-group textarea {
    height: 120px;
    margin: 0;
    font-size: 15px;
    color: var(--color5);
    resize: vertical;
    border-radius: 0;
}
form .form-group.required label:before {
    content: '* ';
    color: #dd4b39;
}

/* primeButton
-------------------------------------------------------------------------------------*/
.primeButton {
    width: auto;
    height: 44px;
    margin: 0;
    padding: 0 25px;
    background: var(--color3);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none!important;
    overflow: hidden;
    border: none;
    transition: all 0.2s;
}
.primeButton.gray {
    background: var(--color9);
}
.primeButton:hover {
    background: var(--color4);
    box-shadow: 5px 5px rgba(0, 91, 155, 0.4);
}
.primeButton.gray:hover {
    background: var(--color5);
    box-shadow: 5px 5px rgba(0, 3, 10, 0.4);
}
.primeButton > span {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none!important;
    z-index: 1;
}

@media (max-width: 767px) {
    .primeButton {
        box-shadow: none!important;
    }
}

/* modal
----------------------------------------------------------------------------------------------------------------------*/
.modal .modal-content {
    border-radius: 0;
}
.modal .modal-content .modal-header {
    padding: 15px 20px;
}
.modal .modal-content .modal-header h4 {
    margin: 0;
    line-height: 1;
}
.modal .modal-content form {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.modal .modal-content .modal-body {
    padding: 15px 20px;
}
.modal .modal-content .modal-body .form-group:last-child {
    margin-bottom: 0;
}
.modal .modal-content .modal-footer {
    padding: 15px 20px;
}
.modal .modal-content .modal-footer .buttonWrap {
    width: auto;
    height: auto;
    margin: 0 -10px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.modal .modal-content .modal-footer .buttonWrap .primeButton {
    margin: 0 10px;
}
.modal#regionSelectModal .modal-content .modal-footer .buttonWrap .primeButton {
    width: 100%;
}
.modal .modal-content .modal-footer .alert {
    margin: 15px 0 0;
    border-radius: 0;
    text-align: left;
    display: none;
}

@media (max-width: 767px) {
    .modal .modal-content .modal-footer .buttonWrap button {
        width: 100%;
    }
}

/* slider
----------------------------------------------------------------------------------------------------------------------*/
.slick-slider ul.slick-dots {
    bottom: 5px;
}
.slick-slider ul.slick-dots li button:before {
    font-size: 17px;
}

.slick-slider .slick-arrow {
    width: 45px;
    height: 45px;
    background: var(--color7);
    display: block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.2s;
    z-index: 2;
}
.slick-slider .slick-arrow:not(.slick-disabled):hover {
    background: var(--color6);
}
.slick-slider .slick-arrow.slick-disabled {
    opacity: 0.3;
}
.slick-slider .slick-arrow:before {
    font-weight: 900;
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-size: 30px;
    color: #fff;
    opacity: 1;
    transition: all 0.2s;
}
.slick-slider .slick-arrow.slick-next {
    padding-left: 3px;
}
.slick-slider .slick-arrow.slick-next:before {
    content: '\f105';
}
.slick-slider .slick-arrow.slick-prev {
    padding-right: 3px;
}
.slick-slider .slick-arrow.slick-prev:before {
    content: '\f104';
}

/* header
----------------------------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 15px;
    background: #fff;
    position: relative;
}

@media (max-width: 767px) {
    header {
        padding-top: 58px;
    }
}

/* header - menuPanel
-------------------------------------------------------------------------------------*/
header .menuPanel {
    display: none;
}

@media (max-width: 767px) {
    header .menuPanel {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 5px 15px;
        left: 0;
        top: 0;
        background: #fff;
        display: block;
        position: fixed;
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    header .menuPanel button {
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 0;
        background: none;
        display: block;
        font-size: 0;
        text-indent: -9999px;
        position: relative;
        overflow: hidden;
        border: none;
    }
    header .menuPanel button:focus {
        outline: none;
    }
    header .menuPanel button span {
        width: auto;
        height: 4px;
        left: 10px;
        top: 22px;
        right: 10px;
        background: var(--color6);
        display: block;
        position: absolute;
        transition: background 0s 0.2s;
    }
    header .menuPanel button.on span {
        background: none;
    }
    header .menuPanel button span::before,
    header .menuPanel button span::after {
        content: '';
        width: 100%;
        height: 4px;
        left: 0;
        background: var(--color6);
        display: block;
        position: absolute;
        transition-duration: 0.2s, 0.2s;
        transition-delay: 0.2s, 0s;
    }
    header .menuPanel button.on span::before,
    header .menuPanel button.on span::after {
        transition-delay: 0s, 0.2s;
    }
    header .menuPanel button span::before {
        top: -9px;
        transition-property: top, transform;
    }
    header .menuPanel button.on span::before {
        top: 0;
        transform: rotate(45deg);
    }
    header .menuPanel button span::after {
        bottom: -9px;
        transition-property: bottom, transform;
    }
    header .menuPanel button.on span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}

/* header - top
-------------------------------------------------------------------------------------*/
header .top {
    width: auto;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .top a.logo {
    width: 255px;
    height: auto;
    margin: 0;
    padding: 0;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-decoration: none;

    flex-grow: 2;
    flex-shrink: 1;
}
header .top a.logo > .img {
    width: 60px;
    height: auto;
    margin: 0;
    padding: 0;
}
header .top a.logo > .img > img {
    width: 100%;
}
header .top a.logo > h1 {
    margin: 0 0 -1px;
    padding-left: 7px;
    font-weight: 700;
    font-size: 12px;
    color: var(--color5);
    line-height: 1.3;
    text-transform: uppercase;
}
header .top a.logo > h1 > span {
    font-size: 26px;
}
header .top .phone {
    width: 174px;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
header .top .phone > button {
    background: none;
    border: none;
}
header .top .phone > button i {
    font-size: 40px;
    color: var(--color3);
    transform: rotate(-45deg);
}
header .top .phone > p {
    margin: 0 0 -5px;
    padding-left: 3px;
}
header .top .phone > p span {
    font-size: 10px;
    color: var(--color10);
    text-transform: uppercase;
}
header .top .phone > p a {
    font-size: 16px;
    color: var(--color5);
    text-decoration: none;
    transition: all 0.2s;
}
header .top .phone > p a:hover {
    color: var(--color3);
}

@media (max-width: 1440px) {
    header .top {
        max-width: 1200px;
    }
}
@media (max-width: 1024px) {
    header .top {
        flex-direction: column;
    }
    header .top a.logo {
        width: auto;
        margin-bottom: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    header .top a.logo > h1 {
        margin: 10px 0 0;
        padding: 0;
        font-weight: 700;
        font-size: 22px;
        line-height: 1;
    }
    header .top a.logo > h1 br {
        display: none;
    }
    header .top a.logo > h1 > span {
        font-size: 22px;
    }
    header .top .phone {
        width: auto;
        margin-top: 20px;
        align-items: center;
    }
    header .top .phone > p {
        margin: -3px 0 0;
        padding-left: 3px;
    }
}
@media (max-width: 767px) {
    header .top .phone {
        margin-top: 0;
    }
    header .top .phone > button {
        width: 48px;
        height: 48px;
        right: 15px;
        top: 5px;
        position: fixed;
        z-index: 999;
    }
    header .top .phone > button i {
        font-size: 30px;
    }
    header .top .phone > p {
        margin: 0;
        padding: 0;
        text-align: center;
    }
    header .top .phone > p span {
        font-size: 12px;
    }
    header .top .phone > p a {
        font-size: 22px;
    }
}

/* header - menu
-------------------------------------------------------------------------------------*/
header .menu {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
header .menu > .item {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
}
header .menu > .item > a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
    position: relative;
}
header .menu > .item > a span {
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}
header .menu > .item > .subs {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
header .menu > .item > .subs > .inner {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
header .menu > .item > .subs > .inner > a {
    width: auto;
    margin: 0;
    display: block;
    text-decoration: none;
}

@media (min-width: 768px) {
    header .menu {
        width: calc(100% - 429px);
    }
    header .menu > .item {
        padding: 5px 20px;
        border-right: 1px solid var(--color11);
    }
    header .menu > .item:first-child {
        padding-left: 0;
    }
    header .menu > .item:last-child {
        padding-right: 0;
        border-right: none;
    }
    header .menu > .item > a {
        text-decoration: none;
    }
    header .menu > .item > a span {
        font-size: 12px;
        color: var(--color5);
    }
    header .menu > .item:hover > a span,
    header .menu > .item > a.active span {
        color: var(--color3);
    }
    header .menu > .item > a .topMenuShowSub {
        display: none;
    }
    header .menu > .item > .subs {
        min-width: 270px;
        max-height: 0;
        padding: 15px;
        left: 0;
        display: block!important;
        position: absolute;
        z-index: -1;
        opacity: 0;
        overflow: hidden;
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
        transition: all 0.2s;
    }
    header .menu > .item:hover > .subs {
        max-height: 520px;
        z-index: 99;
        opacity: 1;
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
    }
    header .menu > .item > .subs > .inner {
        background: #fff;
        padding: 17px 0;
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    }
    header .menu > .item > .subs > .inner > a {
        height: auto;
        padding: 10px 30px;
        transition: all 0.2s;
    }
    header .menu > .item > .subs > .inner > a > span {
        display: block;
        position: relative;
        overflow: hidden;
        font-size: 14px;
        color: var(--color8);
        line-height: 1;
        white-space: nowrap;
        transition: all 0.2s;
    }
    header .menu > .item > .subs > .inner > a > span:before {
        content: '\f054';
        left: -5px;
        top: 5px;
        display: block;
        position: absolute;
        font-family: 'Font Awesome 5 Free', sans-serif;
        font-weight: 900;
        font-size: 8px;
        color: var(--color3);
        transition: all 0.2s;
    }
    header .menu > .item > .subs > .inner > a:hover > span,
    header .menu > .item > .subs > .inner > a.active > span {
        padding-left: 12px;
        color: var(--color3);
    }
    header .menu > .item > .subs > .inner > a:hover > span:before,
    header .menu > .item > .subs > .inner > a.active > span:before {
        left: 0;
    }
}
@media (max-width: 1024px) {
    header .menu {
        width: 100%;
    }
}
@media (max-width: 767px) {
    header .menu {
        width: 450px;
        height: calc(100vh - 58px);
        margin: 0;
        padding: 15px 0;
        left: -450px;
        top: 58px;
        background: rgba(0, 0, 0, 0.9);
        display: block;
        position: fixed;
        overflow-y: scroll;
        transition: all 0.3s;
        z-index: 999;
    }
    header .menu.on {
        left: 0;
    }
    header .menu > .item > a {
        height: 40px;
        padding: 0 59px 0 30px;
        margin: 0;
        text-align: left;
        border-radius: 0;
    }
    header .menu > .item > a span {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        line-height: 42px;
        transition: all 0.2s;
    }
    header .menu > .item:hover > a span,
    header .menu > .item > a.active span {
        color: var(--color3);
    }
    header .menu > .item > a .topMenuShowSub {
        width: 44px;
        height: 100%;
        margin: 0;
        padding: 0;
        top: 0;
        right: 0;
        display: block;
        text-align: center;
        position: absolute;
    }
    header .menu > .item > a .topMenuShowSub i {
        font-size: 15px;
        color: var(--color8);
        line-height: 40px;
    }
    header .menu > .item > .subs {
        display: none;
    }
    header .menu > .item > .subs > .inner > a {
        height: auto;
        padding: 10px 15px 10px 45px;
        text-align: left;
        transition: all 0.2s;
    }
    header .menu > .item > .subs > .inner > a span {
        color: #fff;
        line-height: 1;
        transition: all 0.2s;
    }
    header .menu > .item > .subs > .inner > a:hover span,
    header .menu > .item > .subs > .inner > a.active span {
        color: var(--color3);
    }
}

/* content
----------------------------------------------------------------------------------------------------------------------*/
.content {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 15px;
}
.content .site-error {
    width: auto;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 0;
}

@media (max-width: 1440px) {
    .content .site-error {
        max-width: 1200px;
    }
}

/* content - breadcrumb
-------------------------------------------------------------------------------------*/
.content .breadcrumbWrap {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0 15px;
    background: var(--color11);
}
.content .breadcrumbWrap .breadcrumb {
    width: auto;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 0;
    background: none;
}
.content .breadcrumbWrap .breadcrumb li a {
    color: var(--color3);
}
.content .breadcrumbWrap .breadcrumb li.active {
    color: var(--color5);
}

@media (max-width: 1440px) {
    .content .breadcrumbWrap .breadcrumb {
        max-width: 1200px;
    }
}

/* content - page
-------------------------------------------------------------------------------------*/
.content .page {
    width: auto;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 30px 0;
}
.content .page h2.pageName {
    width: auto;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 38px;
    color: var(--color6);
}
.content .page h2.pageName a {
    color: var(--color6);
    transition: all 0.2s;
    text-decoration: none;
}
.content .page h2.pageName a:hover {
    color: var(--color1);
}
.content .page .pageHtml {
    width: auto;
    height: auto;
    margin: 0;
    padding: 30px 0 0;
}
.content .page .pageHtml h1:first-child,
.content .page .pageHtml h2:first-child,
.content .page .pageHtml h3:first-child,
.content .page .pageHtml h4:first-child {
    margin-top: 0;
}
.content .page .pageHtml .photoView {
    width: auto;
    height: auto;
    margin: -30px -15px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .page .pageHtml .photoView .col {
    width: 25%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .page .pageHtml .photoView .col a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
    border: none;
}
.content .page .pageHtml .photoView .col a img {
    width: 100%;
    border: none;
}
.content > section.map {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0;
}
.content > section.map > .inner {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 1440px) {
    .content .page {
        max-width: 1200px;
    }
}

/* content - page - pagination
-------------------------------------------------------------------------------------*/
.content .page .pageHtml .paginationWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .page .pageHtml .paginationWrap .pagination {
    margin: 30px -5px 0;
}
.content .page .pageHtml .paginationWrap .pagination li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
}
.content .page .pageHtml .paginationWrap .pagination li a,
.content .page .pageHtml .paginationWrap .pagination li span {
    width: 45px;
    height: 45px;
    margin: 0 5px;
    padding: 0;
    background: var(--color11);
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--color5);
    text-decoration: none;
    text-align: center;
    line-height: 45px;
    border: none;
    border-radius: 0;
    transition: all 0.2s;
}
.content .page .pageHtml .paginationWrap .pagination li:hover a,
.content .page .pageHtml .paginationWrap .pagination li.active a,
.content .page .pageHtml .paginationWrap .pagination li:hover span,
.content .page .pageHtml .paginationWrap .pagination li.active span {
    background: var(--color5);
    color: #fff;
}

/* content - mainPage
-------------------------------------------------------------------------------------*/
.content .page.mainPage {
    max-width: none;
    margin: 0;
    padding: 0;
}
.content .mainPage section {
    width: auto;
    height: auto;
    margin: 0;
    padding: 30px 0;
}
.content .mainPage section > h2.sectionName {
    width: auto;
    max-width: 1440px;
    margin: 0 auto 30px;
    padding: 0;
    font-size: 34px;
    color: var(--color6);
    text-align: left;
    text-transform: uppercase;
}
.content .mainPage section > h2.sectionName a {
    color: var(--color6);
    transition: all 0.2s;
    text-decoration: none;
}
.content .mainPage section > h2.sectionName a:hover {
    color: var(--color3);
}
.content .mainPage section > .inner {
    width: auto;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}
.content .mainPage section > .inner a.rvt {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}
.content .mainPage section > .inner a.rvt > img {
    width: 50px;
}
.content .mainPage section > .inner a.rvt > span {
    font-size: 16px;
    color: var(--color5);
    transition: all 0.2s;
}
.content .mainPage section > .inner a.rvt:hover > span {
    color: var(--color3);
}

@media (max-width: 1440px) {
    .content .mainPage section > h2.sectionName {
        max-width: 1200px;
    }
    .content .mainPage section > .inner {
        max-width: 1200px;
    }
}

/* content - mainPage - banners
-------------------------------------------------------------------------------------*/
.content .mainPage .posters {
    margin: 0 -15px;
    padding: 0;
}
.content .mainPage .posters .inner {
    max-width: 100%;
}
.content .mainPage .posters .inner .postersSlider {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .mainPage .posters .inner .postersSlider .slide {
    width: auto;
    height: 670px;
    margin: 0;
    padding: 0 15px;
    background-position: bottom center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .mainPage .posters .inner .postersSlider .slide:before {
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 21, 21, 0.4);
    display: block;
    position: absolute;
}
.content .mainPage .posters .inner .postersSlider:not(.slick-slider) .slide:not(:first-child) {
    display: none;
}
.content .mainPage .posters .inner .postersSlider .slide .slideContent {
    width: auto;
    height: auto;
    margin: -50px 0 0;
    padding: 0;
    text-align: center;
    z-index: 2;
}
.content .mainPage .posters .inner .postersSlider .slide .slideContent .slideTitle {
    margin: 50px 0 0;
    font-size: 64px;
    color: var(--color12);
    line-height: 1.2;
}
.content .mainPage .posters .inner .postersSlider .slide .slideContent .slideText {
    margin: 50px 0 0;
    font-weight: 700;
    font-size: 24px;
    color: var(--color12);
}
.content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink {
    width: auto;
    height: auto;
    margin: 50px 0 0;
    padding: 15px 5px;
    display: inline-block;
    font-size: 20px;
    color: var(--color12);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-bottom-color: var(--color12);
    transition: all 0.2s;
}
.content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink:hover {
    padding: 15px 20px;
    border-color: var(--color12);
}

@media (max-width: 1440px) {
    .content .mainPage .posters .inner .postersSlider .slide {
        height: 522px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent {
        margin: -40px 0 0;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideTitle {
        margin: 40px 0 0;
        font-size: 52px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideText {
        margin: 40px 0 0;
        font-size: 26px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink {
        margin: 40px 0 0;
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    .content .mainPage .posters .inner .postersSlider .slide {
        height: 522px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent {
        margin: -40px 0 0;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideTitle {
        margin: 40px 0 0;
        font-size: 52px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideText {
        margin: 40px 0 0;
        font-size: 26px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink {
        margin: 40px 0 0;
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .content .mainPage .posters .inner .postersSlider .slide {
        height: 522px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent {
        margin: -40px 0 0;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideTitle {
        margin: 30px 0 0;
        font-size: 50px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideText {
        margin: 30px 0 0;
        font-size: 24px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink {
        margin: 30px 0 0;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .content .mainPage .posters .inner .postersSlider .slide {
        height: 522px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent {
        margin: -30px 0 0;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideTitle {
        margin: 30px 0 0;
        font-size: 40px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent .slideText {
        margin: 30px 0 0;
        font-size: 20px;
    }
    .content .mainPage .posters .inner .postersSlider .slide .slideContent a.slideLink {
        margin: 30px 0 0;
        font-size: 16px;
    }
}

/* content - mainPage - about
-------------------------------------------------------------------------------------*/
.content .mainPage .about {}
.content .mainPage .about .sectionName {
    display: none;
}
.content .mainPage .about .inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .mainPage .about .inner .img {
    width: 520px;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .mainPage .about .inner .img img {
    width: 100%;
}
.content .mainPage .about .inner .info {
    width: calc(100% - 520px);
    height: auto;
    margin: 0;
    padding: 0 0 0 30px;
}
.content .mainPage .about .inner .info h3 {
    margin: 0 0 20px;
    font-family: var(--font2);
    font-size: 35px;
    color: var(--color3);
}
.content .mainPage .about .inner .info p {
    font-size: 14px;
    color: var(--color8);
}
.content .mainPage .about .inner .info a.primeButton {
    margin-top: 10px;
}

@media (max-width: 1440px) {
    .content .mainPage .about .inner .img {
        width: 480px;
    }
    .content .mainPage .about .inner .info {
        width: calc(100% - 480px);
    }
    .content .mainPage .about .inner .info h3 {
        font-size: 28px;
    }
    .content .mainPage .about .inner .info p {
        font-size: 13px;
    }
}
@media (max-width: 1024px) {
    .content .mainPage .about .inner .img {
        width: 480px;
    }
    .content .mainPage .about .inner .info {
        width: calc(100% - 480px);
    }
    .content .mainPage .about .inner .info h3 {
        font-size: 23px;
    }
    .content .mainPage .about .inner .info p {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .content .mainPage .about .sectionName {
        display: block;
    }
    .content .mainPage .about .inner {
        flex-direction: column;
    }
    .content .mainPage .about .inner .img {
        width: 100%;
    }
    .content .mainPage .about .inner .info {
        width: 100%;
        padding: 20px 0 0;
    }
    .content .mainPage .about .inner .info h3 {
        display: none;
    }
    .content .mainPage .about .inner .info p {
        font-size: 14px;
    }
    .content .mainPage .about .inner .info a.primeButton {
        width: 100%;
    }
}

/* content - mainPage - tomsk
-------------------------------------------------------------------------------------*/
.content .mainPage .tomsk {}
.content .mainPage .tomsk .inner .video {
    width: auto;
    height: auto;
    margin: -30px -15px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .mainPage .tomsk .inner .video .col {
    width: 25%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .mainPage .tomsk .inner .video .col > div {
    height: 0;
    padding-bottom: 55%;
    position: relative;
}
.content .mainPage .tomsk .inner .video .col iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.content .mainPage .tomsk .inner .photo {
    width: auto;
    height: auto;
    margin: 0;
    padding: 30px 0 0;
}
.content .mainPage .tomsk .inner .photo .photoSlider {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0;
}
.content .mainPage .tomsk .inner .photo .photoSlider:not(.slick-slider) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.content .mainPage .tomsk .inner .photo .photoSlider .slick-arrow.slick-next {
    right: 25px;
}
.content .mainPage .tomsk .inner .photo .photoSlider .slick-arrow.slick-prev {
    left: 25px;
}
.content .mainPage .tomsk .inner .photo .photoSlider .slide {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 15px;
}
.content .mainPage .tomsk .inner .photo .photoSlider:not(.slick-slider) .slide {
    width: 20%;
}
.content .mainPage .tomsk .inner .photo .photoSlider:not(.slick-slider) .slide:not(:nth-child(-n+5)) {
    display: none;
}
.content .mainPage .tomsk .inner .photo .photoSlider .slide a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
    border: none;
}
.content .mainPage .tomsk .inner .photo .photoSlider .slide a img {
    width: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .content .mainPage .tomsk .inner .video .col {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .content .mainPage .tomsk .inner .video .col {
        width: 100%;
    }
}

/* content - mainPage - maria
-------------------------------------------------------------------------------------*/
.content .mainPage .maria {}
.content .mainPage .maria .inner .info {
    width: auto;
    height: auto;
    margin: -30px -15px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .mainPage .maria .inner .info .img {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .mainPage .maria .inner .info .img img {
    width: 100%;
}
.content .mainPage .maria .inner .info .text {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .mainPage .maria .inner .video {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .mainPage .maria .inner .video .col {
    width: 33.33%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .mainPage .maria .inner .video .col > div {
    height: 0;
    padding-bottom: 55%;
    position: relative;
}
.content .mainPage .maria .inner .video .col iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

@media (max-width: 767px) {
    .content .mainPage .maria .inner .info {
        flex-direction: column;
    }
    .content .mainPage .maria .inner .info .img {
        width: 100%;
    }
    .content .mainPage .maria .inner .video .col {
        width: 100%;
    }
}

/* content - mainPage - bio
-------------------------------------------------------------------------------------*/
.content .mainPage .bio {}
.content .mainPage .bio .inner .text {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .mainPage .bio .inner .photo {
    width: auto;
    height: auto;
    margin: 0;
    padding: 30px 0 0;
}
.content .mainPage .bio .inner .photo .photoSlider {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0;
}
.content .mainPage .bio .inner .photo .photoSlider:not(.slick-slider) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.content .mainPage .bio .inner .photo .photoSlider .slick-arrow.slick-next {
    right: 25px;
}
.content .mainPage .bio .inner .photo .photoSlider .slick-arrow.slick-prev {
    left: 25px;
}
.content .mainPage .bio .inner .photo .photoSlider .slide {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 15px;
}
.content .mainPage .bio .inner .photo .photoSlider:not(.slick-slider) .slide {
    width: 20%;
}
.content .mainPage .bio .inner .photo .photoSlider:not(.slick-slider) .slide:not(:nth-child(-n+5)) {
    display: none;
}
.content .mainPage .bio .inner .photo .photoSlider .slide a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
    border: none;
}
.content .mainPage .bio .inner .photo .photoSlider .slide a img {
    width: 100%;
    border: none;
}

/* content - mainPage - news
-------------------------------------------------------------------------------------*/
.content .mainPage .news {}
.content .mainPage .news .inner .newsSlider {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0;
}
.content .mainPage .news .inner .newsSlider:not(.slick-slider) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.content .mainPage .news .inner .newsSlider .slick-arrow.slick-next {
    top: -49px;
    right: 15px;
}
.content .mainPage .news .inner .newsSlider .slick-arrow.slick-prev {
    left: auto;
    top: -49px;
    right: 75px;
}
.content .mainPage .news .inner .newsSlider .slide {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 15px;
}
.content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide {
    width: 33.33%;
}
.content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide:not(:nth-child(-n+3)) {
    display: none;
}
.content .mainPage .news .inner .newsSlider .slide .new {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
}
.content .mainPage .news .inner .newsSlider .slide .new .img {
    width: auto;
    height: 306px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    z-index: -1;
}
.content .mainPage .news .inner .newsSlider .slide .new .img img {
    width: 100%;
    height: auto;
    z-index: -1;
}
.content .mainPage .news .inner .newsSlider .slide .new .data {
    width: auto;
    height: auto;
    margin: -70px 0 0 50px;
    padding: 20px;
    background: #f6f6f6;
    z-index: 1;
}
.content .mainPage .news .inner .newsSlider .slide .new .data h4 {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    color: var(--color6);
    text-transform: uppercase;
    transition: all 0.2s;
}
.content .mainPage .news .inner .newsSlider .slide .new:hover .data h4 {
    color: var(--color3);
}
.content .mainPage .news .inner .newsSlider .slide .new .data .desc {
    width: auto;
    height: auto;
    margin: 15px 0 0;
    padding: 0;
}
.content .mainPage .news .inner .newsSlider .slide .new .data .desc p {
    margin: 0;
    font-size: 14px;
    color: var(--color8);
}
.content .mainPage .news .inner .newsSlider .slide .new .data p.date {
    margin: 20px 0 0;
    font-size: 13px;
    color: var(--color10);
    transition: all 0.2s;
}
.content .mainPage .news .inner .newsSlider .slide .new:hover .data p.date {
    color: var(--color3);
}

@media (max-width: 1440px) {
    .content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide {
        width: 50%;
    }
    .content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide:not(:nth-child(-n+2)) {
        display: none;
    }
    .content .mainPage .news .inner .newsSlider .slide .new .img {
        height: 390px;
    }
}
@media (max-width: 767px) {
    .content .mainPage .news .sectionName {
        text-align: center;
    }
    .content .mainPage .news .inner .newsSlider .slick-arrow.slick-prev {
        left: 15px;
    }
    .content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide {
        width: 100%;
    }
    .content .mainPage .news .inner .newsSlider:not(.slick-slider) .slide:not(:first-child) {
        display: none;
    }
    .content .mainPage .news .inner .newsSlider .slide .new .img {
        height: auto;
    }
    .content .mainPage .news .inner .newsSlider .slide .new .data {
        margin: 0;
    }
}

/* content - mainPage - map
-------------------------------------------------------------------------------------*/
.content .mainPage .map {
    margin: 0 -15px;
    padding-bottom: 0;
}
.content .mainPage .map .inner {
    max-width: 100%;
}

/* content - newsPage
-------------------------------------------------------------------------------------*/
.content .page.newsPage {}
.content .newsPage .pageHtml .news {
    width: auto;
    height: auto;
    margin: -30px -15px 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.content .newsPage .pageHtml .news > .col {
    width: 33.33%;
    height: auto;
    margin: 0;
    padding: 30px 15px 0;
}
.content .newsPage .pageHtml .news .new {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
}
.content .newsPage .pageHtml .news .new .img {
    width: auto;
    height: 306px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.content .newsPage .pageHtml .news .new .img img {
    width: 100%;
    height: auto;
}
.content .newsPage .pageHtml .news .new .img .date {
    width: 90px;
    height: 90px;
    margin: 0;
    padding: 17px 0 0;
    left: 15px;
    top: 15px;
    background: var(--color6);
    display: block;
    position: absolute;
    font-size: 13px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 90px;
    transition: all 0.2s;
}
.content .newsPage .pageHtml .news .new:hover .img .date {
    background: var(--color3);
}
.content .newsPage .pageHtml .news .new .img .date span {
    font-size: 22px;
}
.content .newsPage .pageHtml .news .new h3.name {
    margin: 15px 0 0;
    font-weight: 400;
    font-size: 24px;
    color: var(--color6);
    text-transform: uppercase;
    line-height: 1.4;
    transition: all 0.2s;
}
.content .newsPage .pageHtml .news .new:hover h3.name {
    color: var(--color3);
}
.content .newsPage .pageHtml .news .new .desc {
    width: auto;
    height: auto;
    margin: 15px 0 0;
    padding: 0;
}
.content .newsPage .pageHtml .news .new .desc p {
    margin: 0;
    color: var(--color9);
}

@media (max-width: 1440px) {
    .content .newsPage .pageHtml .news .new .img {
        height: 253px;
    }
}
@media (max-width: 1024px) {
    .content .newsPage .pageHtml .news > .col {
        width: 50%;
    }
    .content .newsPage .pageHtml .news .new .img {
        height: 321px;
    }
}
@media (max-width: 767px) {
    .content .newsPage .pageHtml .news > .col {
        width: 100%;
    }
    .content .newsPage .pageHtml .news > .col:not(:first-child) .new {
        padding-top: 30px;
        border-top: 2px solid var(--color11);
    }
    .content .newsPage .pageHtml .news .new .img {
        height: auto;
    }
}

/* footer
----------------------------------------------------------------------------------------------------------------------*/
footer {
    width: 100%;
    height: auto;
    margin: auto 0 0;
    padding: 0 15px;
    background: var(--color6);
}

/* footer - top
-------------------------------------------------------------------------------------*/
footer .top {
    width: auto;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
footer .top .inner {
    width: auto;
    height: auto;
    margin: 0 -40px;
    padding: 50px 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
footer .top .inner .item {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 40px;
    flex-grow: 1;
    flex-shrink: 2;
}
footer .top .inner .item:last-child {
    margin-left: auto;
    flex-grow: 2;
    flex-shrink: 1;
    text-align: right;
}
footer .top .inner .item h3 {
    margin: 0 0 20px;
    font-family: var(--font2);
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
footer .top .inner .item ul {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .top .inner .item ul li {
    padding: 4px 0;
}
footer .top .inner .item ul li:first-child {
    padding-top: 0;
}
footer .top .inner .item ul li:last-child {
    padding-bottom: 0;
}
footer .top .inner .item ul li a {
    font-size: 14px;
    color: var(--color8);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
footer .top .inner .item ul li a:hover {
    color: var(--color3);
}
footer .top .inner .item .text {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
footer .top .inner .item .text p {
    font-size: 14px;
    color: var(--color8);
    line-height: 1.9;
}
footer .top .inner .item.contacts .text p {
    margin: 0;
}
footer .top .inner .item .text p a {
    color: var(--color8);
    text-decoration: none;
    transition: all 0.2s;
}
footer .top .inner .item .text p a:hover {
    color: var(--color3);
}
footer .top .inner .item.contacts .text button {
    margin-top: 20px;
}

@media (max-width: 1440px) {
    footer .top {
        max-width: 1200px;
    }
}
@media (max-width: 1024px) {
    footer .top .inner .item ul li a {
        font-size: 13px;
    }
    footer .top .inner .item .text p {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    footer .top .inner {
        padding: 30px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .top .inner .item {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    footer .top .inner .item:first-child {
        margin-top: 0;
    }
    footer .top .inner .item:last-child {
        margin-left: 0;
        text-align: center;
    }
    footer .top .inner .item.about {
        margin-left: 0;
    }
    footer .top .inner .item .text button {
        width: 100%;
    }
}

/* footer - bot
-------------------------------------------------------------------------------------*/
footer .bot {
    width: auto;
    height: auto;
    margin: 0 -15px;
    padding: 0 15px;
    background: var(--color5);
}
footer .bot .inner {
    width: auto;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .bot .inner p.copy {
    margin: 0;
    color: #fff;
}
footer .bot .inner .social {
    width: auto;
    height: 26px;
    margin: 0;
    padding: 0;
}
footer .bot .inner .social ul li.ya-share2__item {}
footer .bot .inner .social ul li.ya-share2__item .ya-share2__badge {
    border-radius: 30px;
}
footer .bot .inner .social ul li.ya-share2__item .ya-share2__badge .ya-share2__icon {
    width: 26px;
    height: 26px;
}

@media (max-width: 1440px) {
    footer .bot .inner {
        max-width: 1200px;
    }
}
@media (max-width: 767px) {
    footer .bot .inner {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    footer .bot .inner p.copy {
        margin-top: 15px;
    }
    footer .bot .inner .social {
        height: 30px;
    }
    footer .bot .inner .social ul li.ya-share2__item:not(:last-child) {
        margin-right: 10px;
    }
    footer .bot .inner .social ul li.ya-share2__item .ya-share2__badge .ya-share2__icon {
        width: 30px;
        height: 30px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/