/* ___________1. RESET CSS____________________*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
    vertical-align: baseline;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-variant: inherit;
    font-style: inherit;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HTML5 display-role reset for older browsers */
article, address, aside, details, figcaption, figure,
footer, header, menu, nav, section, label, small, time, img {
    display: block;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 320px;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    font-family: 'HelveticaNeueCyr', Arial, Helvetica, sans-serif;
    color: #0e0f1a;
    background: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

body.mobile-active .page-holder {
    height: 100vh;
    overflow: hidden;
}

body.mobile-active footer {
    display: none;
}

html {
    height: 100%;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html.loaded {
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    opacity: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

mark {
    background: none;
    color: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}

img {
    max-width: 100%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Roman.eot');
    src: url('../fonts/HelveticaNeueCyr-Roman.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Roman.woff2') format('woff2'),
    url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Roman.ttf') format('truetype'),
    url('../fonts/HelveticaNeueCyr-Roman.svg#HelveticaNeueCyr-Roman') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Bold.eot');
    src: url('../fonts/HelveticaNeueCyr-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Bold.woff2') format('woff2'),
    url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Bold.ttf') format('truetype'),
    url('../fonts/HelveticaNeueCyr-Bold.svg#HelveticaNeueCyr-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Medium.eot');
    src: url('../fonts/HelveticaNeueCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Medium.woff2') format('woff2'),
    url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Medium.ttf') format('truetype'),
    url('../fonts/HelveticaNeueCyr-Medium.svg#HelveticaNeueCyr-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

/* ___________1. end of RESET CSS___________________*/

/* ___________2. TYPICAL ELEMENTS___________________*/

/*____________2.1. TITLES______________________*/
.page-title {
    padding: 0 0 65px 0;
    font-size: 84px;
    line-height: 84px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-title.low-title {
    max-width: 768px;
    font-size: 64px;
    line-height: 74px;
}

.aside-event-title {
    position: relative;
    padding: 0 0 20px 0;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
}

.aside-event-title:before {
    position: absolute;
    content: '';
    top: 0;
    left: -100px;
    display: block;
    width: 62px;
    height: 49px;
    background: url('../images/ui-icons.png') no-repeat -61px -64px;
}

.retina .aside-event-title:before {
    background: url('../images/ui-icons@2x.png') no-repeat -61px -64px;
    background-size: 131px 185px;
}

.inner-content-title {
    padding: 0 0 25px 0;
    font-size: 32px;
    line-height: 35px;
    font-weight: 700;
}

/*____________2.1. end of TITLES_______________*/

/*____________2.2. LINKS_______________________*/
a {
    color: #007cb2;
    text-decoration: underline;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

a.mail-to,
a.call-to,
a.mail-to:hover,
a.call-to:hover {
    cursor: default;
    color: inherit;
    text-decoration: none;
}

/*____________2.2. end of LINKS________________*/

/*________________2.3. FORM ELEMENTS___________*/
input::-ms-clear {
    display: none;
}

::-webkit-input-placeholder {
    color: #1e1e1e;
}

::-moz-placeholder {
    color: #1e1e1e;
}

:-ms-input-placeholder {
    color: #1e1e1e;
}

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

textarea.textarea-field,
input.text-input {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    border: 1px solid #000000;
    background: #ffffff;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

textarea.textarea-field {
    height: 100px;
    padding: 5px 15px;
    overflow: hidden;
    resize: none;
}

textarea.textarea-field.error,
input.text-input.error {
    color: #ea291c;
    border: 1px solid #ea291c;
}

label.error {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: block;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
    color: #ea291c;
    white-space: nowrap;
}

.submit-btn {
    position: relative;
    display: block;
    outline: none;
    width: 200px;
    height: 46px;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.radio,
.checkbox {
    display: block;
    height: 20px;
    width: 20px;
    border: 1px solid #000000;
    margin: 0 0 10px 0;
    overflow: hidden;
    cursor: pointer;
}

.radio.checked,
.checkbox.checked {
    background: #333333;
}

.radio input,
.checkbox input {
    position: absolute;
    top: 0;
    left: -999px;
}

/*_____________2.3. end of FORM ELEMENTS_________*/
/*blue 007CB2*/
/*red EA291C*/
/*text 0E0F1A*/
/*text light 3C3D47*/
/*gray 9CA1A6*/

.members-list:after,
.footer-nav:after,
.page-section:after,
header:after,
footer:after,
.inner:after,
.main:after,
.mobile-nav-items:after,
.mobile-nav-holder:after,
.modal-frame:after {
    display: block;
    content: '';
    clear: both;
}

.inner {
    position: relative;
    max-width: 980px;
    margin: auto;
}

.inner-wide {
    max-width: 1100px;
}

.page-holder {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.main {
    position: relative;
    z-index: 40;
    display: block;
    min-height: 100%;
    min-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 290px;
}

.hide {
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    opacity: 0;
}

.hide.visible {
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    opacity: 1;
}

.hidden {
    display: none !important;
}

.input-line {
    position: relative;
}

.modal-trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ___________2. end of TYPICAL ELEMENTS____________*/

/*____________3. HEADER_______________________*/
header {
    position: relative;
    z-index: 60;
    min-width: 100%;
    padding: 90px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-logo {
    float: left;
}

.header-logo > a {
    display: block;
    width: 204px;
    height: 67px;
    background: url('../images/header-logo.png') no-repeat 0 0;
    -webkit-transition: all 0s;
    transition: all 0s;
}

.retina .header-logo > a {
    background: url('../images/header-logo@2x.png') no-repeat 0 0;
    background-size: 204px 67px;
}

.header-materials {
    float: right;
    margin: 20px 0 0 0;
}

.header-materials-holder > a {
    position: relative;
}

.header-materials-holder > a:before {
    position: relative;
    top: 1px;
    display: inline-block;
    content: '';
    width: 23px;
    height: 11px;
    margin: 0 10px 0 0;
    background: url('../images/ui-icons.png') no-repeat -2px -138px;
}

.retina .header-materials-holder > a:before {
    background: url('../images/ui-icons@2x.png') no-repeat -2px -138px;
    background-size: 131px 185px;
}

/*_________________________________________________NEW CODE 21.04.16*/
.desktop-nav-holder {
    float: left;
    width: calc(100% - 440px);
    padding: 18px 0 0 11%;
}

.desktop-nav-holder > ul > li {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: top;
    width: 31%;
    padding: 0 0 8px 0;
    line-height: 20px;
}

.mobile-nav-holder > ul > li.current > a,
.desktop-nav-holder > ul > li.current > a {
    position: relative;
    z-index: 3;
    color: #0e0f1a;
    text-decoration: none;
    cursor: default;
}

.dash:after,
.text-block blockquote:after,
.mobile-nav-holder > ul > li.current > a:after,
.desktop-nav-holder > ul > li.current > a:after {
    position: relative;
    top: -0.13em;
    display: inline-block;
    content: '_';
    color: #ea291c;
}

.desktop-nav-holder li:hover {
    z-index: 2;
}

.desktop-nav-holder > ul > li > a{
    position: relative;
    z-index: 3;
}

.desktop-nav-holder > ul > li > ul {
    position: absolute;
    top: -33px;
    left: -36px;
    padding: 77px 36px 38px 36px;
    z-index: 1;
    min-width: calc(100% - 72px);
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.27), 0 12px 14px 0 rgba(0,0,0,0.17);
    white-space: nowrap;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.desktop-nav-holder > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.desktop-nav-holder > ul > li > ul > li {
    padding: 11px 0 0 0;
}

.desktop-nav-holder > ul > li > ul > li:first-child {
    padding: 28px 0 0 0;
    border-top: 4px solid #EA291C;
}

.mobile-nav-holder > ul > li > ul {
    display: none;
}

.mobile-nav-holder > ul > li > ul {
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    padding: 0 0 0 15px;
}
/*_________________________________________________end of NEW CODE 21.04.16*/

/*mobile nav*/
.mobile-nav-btn {
    position: absolute;
    top: 3px;
    right: -20px;
    z-index: 905;
    display: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.mobile-nav-btn.active {
    position: fixed;
    top: 23px;
    right: 0;
}

.mobile-nav-btn > div {
    position: absolute;
    top: 39px;
    left: 30px;
    z-index: 1;
    display: block;
    width: 20px;
    height: 2px;
    background: #0c73c7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-nav-btn > div:after,
.mobile-nav-btn > div:before {
    position: absolute;
    left: 0;
    display: block;
    content: '';
    width: 20px;
    height: 2px;
    background: #007cb2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-nav-btn > div:before {
    top: -6px;
}

.mobile-nav-btn > div:after {
    top: 6px;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    opacity: 1;
}

.mobile-nav-btn.active > div {
    background: #007cb2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-nav-btn.active > div:before {
    background: #007cb2;
    -webkit-transform: rotate(-90deg) translate(-6px, 0);
    transform: rotate(-90deg) translate(-6px, 0);
}

.mobile-nav-btn.active > div:after {
    -webkit-transform: rotate(90deg) translate(-6px, 0);
    transform: rotate(90deg) translate(-6px, 0);
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    opacity: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: none;
    width: 300px;
    height: 100vh;
    padding: 100px 20px 50px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    background: #ffffff;
    -webkit-transform: translate3d(320px, 0, 0);
    transform: translate3d(320px, 0, 0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    overflow-y: auto;
}

.mobile-nav.active {
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.4);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mobile-nav-items,
.mobile-nav-holder {
    position: relative;
    z-index: 2;
}

.mobile-nav-holder {
    padding: 0 0 20px 0;
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.mobile-nav.active .mobile-nav-holder {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s 0.25s, opacity 0.35s 0.2s;
    transition: transform 0.5s 0.25s, opacity 0.35s 0.2s;
}

.mobile-nav-holder li {
    padding: 10px 0 0 0;
}

.mobile-nav-holder li a {
    display: inline-block;
    padding: 5px 0;
}

.mobile-nav-close {
    position: fixed;
    top: -20vh;
    left: 0;
    z-index: 70;
    display: none;
    height: 0;
    width: 100%;
    background: transparent;
    -webkit-transition: background 0.35s 0.35s;
    transition: background 0.35s 0.35s;
}

.mobile-nav-close.active {
    height: 140vh;
    background: rgba(14, 15, 26, 0.7);
}

.mobile-nav-items {
    padding: 20px 0 50px 0;
    border-top: 1px solid #9ca1a6;
}

/* end of mobile nav*/

/*____________3. end of HEADER___________________*/

/*____________4. FOOTER_______________________*/
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

footer > .inner {
    padding: 0 0 56px 0;
}

.footer-copyright {
    float: left;
    width: 200px;
    margin: 0 100px 0 0;
    padding: 30px 0 40px 0;
    color: #3c3d47;
    border-top: 4px solid #ea291c;
}

.footer-copyright span {
    display: block;
}

.footer-nav {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.footer-nav:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: 200px;
    height: 4px;
    background: #ea291c;
}

.footer-nav > li {
    float: left;
    margin-left: 20px;
    margin-bottom: 10px;
}

.footer-nav > li:first-child {
    margin-left: 0;
}

/*____________4. end of FOOTER___________________*/

/*___________5. MAIN CONTENT_________________________*/

/*buttons*/
[class*="-button"] {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
    border: none;
    cursor: pointer;
    outline: none;
}

[class*="-button"]:hover {
    text-decoration: none;
}

.back-link {
    padding: 0 0 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.back-link a:before {
    position: relative;
    top: 2px;
    display: inline-block;
    content: '';
    width: 13px;
    height: 12px;
    margin: 0 5px 0 0;
    background: url('../images/ui-icons.png') no-repeat -3px -155px;
}

.retina .back-link > a:before {
    background: url('../images/ui-icons@2x.png') no-repeat -3px -155px;
    background-size: 131px 185px;
}

/* end of buttons*/

/*page background*/
[class*="page-bg"] {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
}

/* end of page background*/

/*categories nav*/
.categories-nav {
    padding: 0 0 90px 0;
    text-align: justify;
}

.categories-nav:after {
    display: inline-block;
    content: '';
    width: 100%;
}

.categories-nav-item {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    text-align: left;
}

.categories-nav-item a {
    display: inline-block;
}

.categories-nav-row {
    display: table;
    width: 100%;
}

.categories-nav-cell {
    display: table-cell;
    vertical-align: middle;
    height: 60px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.categories-nav-cell:first-child {
    width: 90px;
}

.categories-nav-cell:before {
    display: block;
    content: '';
}

.categories-nav-cell.icon-sites:before {
    width: 70px;
    height: 58px;
    background: url('../images/ui-icons.png') no-repeat -61px 0;
}

.retina .categories-nav-cell.icon-sites:before {
    background: url('../images/ui-icons@2x.png') no-repeat -61px 0;
    background-size: 131px 185px;
}

.categories-nav-cell.icon-play:before {
    width: 59px;
    height: 59px;
    background: url('../images/ui-icons.png') no-repeat 0 -72px;
}

.retina .categories-nav-cell.icon-play:before {
    background: url('../images/ui-icons@2x.png') no-repeat 0 -72px;
    background-size: 131px 185px;
}

.categories-nav-cell.icon-folder:before {
    width: 64px;
    height: 51px;
    background: url('../images/ui-icons.png') no-repeat -61px -118px;
}

.retina .categories-nav-cell.icon-folder:before {
    background: url('../images/ui-icons@2x.png') no-repeat -61px -118px;
    background-size: 131px 185px;
}

/* end of categories nav*/

/*page columns*/
.page-aside {
    float: left;
    width: 200px;
    margin: 0 0 30px 0;
}

.page-content-holder {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.page-content {
    padding: 0 0 0 100px;
}

.aside-event,
.aside-nav {
    position: relative;
    padding: 30px 0 60px 0;
    border-top: 4px solid #ea291c;
}

.aside-nav > li {
    margin: 13px 0 0 0;
    font-size: 15px;
}

.aside-nav > li:first-child {
    margin: 0;
}

/* end of page columns*/

/*text*/
.text-block {
    padding: 0 0 40px 0;
}

.text-block.low {
    padding: 0 0 60px 0;
}

.text-block strong {
    display: block;
    padding: 0 0 20px 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.text-block p strong {
    display: inline;
    padding: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: bold;
}
.text-block li strong {
    display: inline;
    padding: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: bold;
}

.text-block p {
    padding: 0 0 30px 0;
    font-size: 15px;
    line-height: 25px;
    color: #3c3d47;
}
.text-block ul {
    padding: 0 0 30px 0;
    font-size: 15px;
    line-height: 25px;
    color: #3c3d47;
}

.text-block blockquote {
    position: relative;
    margin: 30px 0;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.text-block blockquote:before {
    position: absolute;
    content: '';
    top: 0;
    left: -43px;
    display: block;
    width: 26px;
    height: 24px;
    background: url('../images/ui-icons.png') no-repeat -31px -137px;
}

.retina .text-block blockquote:before {
    background: url('../images/ui-icons@2x.png') no-repeat -31px -137px;
    background-size: 131px 185px;
}

.document-box {
    display: table;
    width: 100%;
}

.document-box-cell {
    display: table-cell;
    vertical-align: middle;
    height: 74px;
    font-size: 15px;
    line-height: 25px;
}

.document-box-cell:first-child {
    width: 80px;
}

.document-box-cell.icon-document:before {
    display: block;
    content: '';
    width: 55px;
    height: 71px;
    background: url('../images/ui-icons.png') no-repeat 0 0;
}

.retina .document-box-cell.icon-document:before {
    background: url('../images/ui-icons@2x.png') no-repeat 0 0;
    background-size: 131px 185px;
}

.document-box-content > span {
    display: block;
    font-weight: 500;
    color: #9ca1a6;
}

.document-box-content > a {
    display: inline-block;
}

.preview-text {
    max-width: 570px;
}

/* end of text*/

/*aside event*/
.aside-event-image {
    position: relative;
    margin: 0 0 25px 0;
}

.aside-event-image > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

.aside-event-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.aside-event-name {
    padding: 0 0 15px 0;
    font-size: 15px;
    line-height: 25px;
}

.aside-event-name > a {
    display: inline-block;
}

.date-box {
    padding: 0 0 10px 0;
    font-size: 15px;
    font-weight: 700;
}

/*end of aside event*/

/*news list*/
.news-list {
    padding: 20px 0 40px 0;
}

.news-list-item {
    padding: 0 0 30px 0;
}

.news-list-item > a {
    display: inline-block;
    font-size: 15px;
    line-height: 25px;
}

.news-list-item > a:hover {
    color: #3c3d47;
}

.more-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

/* end of news list*/

/*table*/
.table-box {
    overflow: auto;
}

.table-box > table {
    min-width: 600px;
    max-width: 670px;
}

.table-box th {
    padding: 0 0 10px 0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    border-bottom: 2px solid #3c3d47;
    text-align: left;
}

.table-box td {
    padding: 32px 5px 32px 5px;
    font-size: 13px;
    line-height: 20px;
    border-top: 1px solid #9ca1a6;
}

.table-box tr.no-border td,
.table-box tr:first-child td {
    border-top: none;
}

.table-box tr.no-border td {
    padding-top: 0;
}

.table-box td > span,
.table-box td.available {
    font-weight: 500;
}

.table-box td > span {
    display: block;
}

.table-box td > span.table-title {
    font-weight: 500;
    font-size: 15px;
}

.benefits-table td:first-child {
    width: 45%;
    padding-right: 40px;
}

.schedule-table td:first-child {
    width: 47%;
    padding-right: 40px;
}

.schedule-table td:nth-child(3) {
    width: 25%;
}

/* end of table*/

/*members list*/
.members-list {
    padding: 0 0 40px 0;
    text-align: justify;
}

.members-list:after {
    display: inline-block;
    content: '';
    width: 100%;
}

.members-list > ul {
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    max-width: 240px;
    font-size: 15px;
    line-height: 25px;
    text-align: left;
}

.members-list > ul.simple-list {
    display: inline-block;
    vertical-align: top;
    width: auto;
    max-width: none;
    font-size: 15px;
    line-height: 25px;
    text-align: left;
}

.members-list > ul > li {
    padding: 0 0 15px 0;
}

.members-list > ul > li > a {
    display: inline-block;
}

/* end of members list*/

/*events list*/
.events-list {
    position: relative;
}

.events-list-holder {
    text-align: justify;
}

.events-list-holder:after {
    display: inline-block;
    content: '';
    width: 100%;
}

.events-list-item {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    max-width: 270px;
    margin: 0 0 80px 0;
    font-size: 15px;
    line-height: 25px;
    text-align: left;
}

.events-list-item > a {
    display: inline-block;
}

/* end of events list*/

/*modal*/
.modal-holder {
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

.modal-holder.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    max-height: 100%;
    opacity: 1;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-row {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.modal-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding: 0 20px;
}

.modal-close-wide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background: #000000;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
    opacity: 0.5;
}

.modal-close-small {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.modal-close-small:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: url('../images/ui-icons.png') no-repeat -2px -169px;
}

.retina .modal-close-small:before {
    background: url('../images/ui-icons@2x.png') no-repeat -2px -169px;
    background-size: 131px 185px;
}

[class$="modal-frame"] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin: 20px auto;
    background: #ffffff;
    padding: 30px 20px;
}

.warning-modal-frame p {
    padding: 8px 0;
    font-size: 18px;
    text-align: center;
}

/* end modal*/

/*browsers fix*/
.ie8 body {
    min-width: 1024px;
}

/* end of browsers fix*/

/*___________5. end of MAIN CONTENT______________*/

/*_________________ 6. PLUGINS___________________*/

/*___________end of 6. PLUGINS___________________*/

/*___________7. RESPONSIVE__________________________*/

/*1280*/
@media only screen and (max-width: 1280px) {
    .aside-event-title:before {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 0 30px 0;
    }
}

/* end of 1280*/

/*1024*/
@media only screen and (max-width: 1024px) {
    header {
        padding: 20px 20px 80px 20px;
    }

    .mobile-nav,
    .mobile-nav-btn,
    .mobile-nav-close {
        display: block;
    }

    .page-title.low-title,
    .page-title {
        font-size: 62px;
        line-height: 64px;
    }

    .header-materials {
        float: left;
        margin: 36px 0 0 30px;
    }

    .desktop-nav-holder {
        display: none;
    }

    .page-content {
        padding: 0 0 0 50px;
    }

    .footer-copyright {
        margin: 0 50px 0 0;
    }

    .footer-nav > li {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 1025px) {
    [class*="page-bg"] {
        display: block;
    }

    .page-bg-top-main {
        top: 0;
        z-index: 1;
        height: 1574px;
        background: url('../images/top-page-bg.jpg') no-repeat right 0;
    }

    .page-bg-top {
        top: 0;
        z-index: 1;
        height: 1292px;
        background: url('../images/inner-page-bg.jpg') no-repeat right 0;
    }

    .page-bg-bottom {
        bottom: 0;
        z-index: 2;
        height: 354px;
        background: url('../images/bottom-page-bg.jpg') no-repeat 0 0;
    }

}

/* end of 1024*/

/*800*/
@media only screen and (max-width: 800px) {
    .page-content {
        padding: 0;
    }

    .page-aside {
        float: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 30px auto;
    }

    .footer-copyright {
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-nav > li:first-child,
    .footer-nav > li {
        float: none;
        display: inline-block;
        vertical-align: top;
        margin: 0 10px 10px 10px;
    }

    .footer-nav:before {
        left: 50%;
        margin: 0 0 0 -100px;
    }

    .text-block blockquote:before {
        top: -30px;
        left: 0;
    }

    .members-list {
        text-align: center;
    }

    .members-list > ul {
        width: 100%;
        max-width: 560px;
    }

    .events-list-item {
        width: 45%;
        max-width: 350px;
    }
}

/* end of 800*/

/*768*/
@media only screen and (max-width: 768px) {

    .page-title.low-title,
    .page-title {
        font-size: 44px;
        line-height: 46px;
    }

    .inner-content-title {
        font-size: 28px;
        line-height: 32px;
    }

    .categories-nav {
        padding: 0 0 40px 0;
        text-align: center;
    }

    .categories-nav-item {
        width: 45%;
        padding: 0 20px 30px 20px;
    }

    .text-block strong,
    .text-block blockquote {
        font-size: 18px;
        line-height: 26px;
    }

    .aside-event-title {
        font-size: 20px;
        line-height: 22px;
    }
}

/* end of 768*/

/*640*/
@media only screen and (max-width: 640px) {
    .header-materials {
        display: none;
    }

    .categories-nav {
        text-align: center;
    }

    .categories-nav-item {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .categories-nav-item:first-child {
        padding: 0;
    }

    .categories-nav-row {
        max-width: 320px;
        margin: auto;
    }

    .document-box-cell {
        display: block;
        height: auto;
    }

    .document-box-cell:first-child {
        padding: 0 0 10px 0;
    }

    .events-list-item {
        width: 100%;
        max-width: 540px;
    }
}

/* end of 640*/

/*540*/
@media only screen and (max-width: 540px) {

}

/* end of 540*/

/*480*/
@media only screen and (max-width: 480px) {

    header {
        padding-bottom: 60px;
    }

    .page-title.low-title,
    .page-title {
        padding: 0 0 35px 0;
        font-size: 28px;
        line-height: 32px;
    }

    .inner-content-title {
        font-size: 24px;
        line-height: 28px;
    }

    .footer-nav > li:first-child,
    .footer-nav > li {
        display: block;
    }

}

/* end of 480*/

/*320*/
@media only screen and (max-width: 320px) {

}

/* end of 320*/

/*___________end of 7. RESPONSIVE___________________*/

/*___________8. Print styles.___________________*/
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    pre,
    blockquote {
        border: 1px solid #000000;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    header,
    footer {
        position: static;
    }

    .main {
        padding: 100px 0 !important;
    }
}

/*___________8. end of Print styles.____________*/

/* Joomla */
.pagination ul li {
    float: left;
    padding-right: 10px;
    font-size:0.8em;
}
.pagination p {
    font-size: 0.8em;
    color: #ccc;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.pagination ul li.current a {
    text-decoration: none;
    color: #ccc;
}

.page-content .text-block ul li {
    list-style: disc;
    margin-left: 20px;
    padding-bottom: 10px;
}