/* body
----------------------------------------------------------------------------------------------------------------------*/
@font-face {
    font-family: FranklinGothic;
    src: url('/media/css/version3/fonts/FRAMD.ttf');
}
@font-face {
    font-family: FranklinGothicHeavy;
    src: url('/media/css/version3/fonts/FRAHV.ttf');
}
html, body {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    font-weight: 400;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
body {
    width: 100%;
}
.wrap {
    width: auto;
    /*min-width: 1280px;*/
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.wrap img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.wrap a {
    outline: none;
}
.wrap .pageMain .alert {
    margin: 10px 0 0;
    border-radius: 0;
}
.wrap .clear {
    clear: both;
}
.wrap .primeButton {
    width: auto;
    height: auto;
    margin: 0;
    padding: 11px 0;
    display: block;
    font-family: 'FranklinGothicHeavy', 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
    line-height: 1.1;
    transition: all 0.3s;
}
.wrap .primeButton.red {
    background: #df4c27;
}
.wrap .primeButton.red:hover {
    background: #f35027;
}
.wrap .primeButton.green {
    background: #25a228;
}
.wrap .primeButton.green:hover {
    background: #25b628;
}
.wrap .primeButton.blue {
    background: #03bde9;
}
.wrap .primeButton.blue:hover {
    background: #03ceff;
}

@media (max-width: 992px) {}

/* ratio
----------------------------------------------------------------------------------------------------------------------*/
.ratio {
    position: relative;
}
.ratio.ratio-1x1 {
    --aspect-ratio: 100%;
}
.ratio.ratio-4x3 {
    --aspect-ratio: 75%;
}
.ratio.ratio-16x9 {
    --aspect-ratio: 56.25%;
}
.ratio.ratio-21x9 {
    --aspect-ratio: 42.8571428571%;
}
.ratio:before {
    content: '';
    display: block;
    padding-top: var(--aspect-ratio);
}
.ratio > * {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

/* header
----------------------------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    /*min-width: 1280px;*/
    height: auto;
    margin: 0;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media (max-width: 992px) {}

/* header - top
--------------------------------------------------------------------------------------------------*/
header .top {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
header .top p {
    margin: 0;
    padding: 10px 0;
    font-size: 15px;
    color: #666;
}
header .top p.pull-left {
    text-transform: uppercase;
}
header .top p.pull-right {
    margin-left: 25px;
}
header .top p a.login {
    color: #000;
}
header .top p a.call {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}
header .top p a.call:hover {
    color: #000;
}
header .top p a.iconLink {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}
header .top p a.iconLink:hover {
    color: #000;
}
header .top p a.iconLink i {
    margin-left: 7px;
}
header .top p a.iconLink:first-child i {
    margin: 0;
}

@media (max-width: 992px) {}

/* header - mid
--------------------------------------------------------------------------------------------------*/
header .midWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    background: #000;
}
header .midWrap .mid {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
header .midWrap .mid button.menu-button {
    display: none;
}
header .midWrap .mid a.account-link {
    display: none;
}
header .mid .logo {
    width: 426px;
    height: 81px;
    left: 0;
    top: 50%;
    margin: -40px 0 0;/* верхний отступ = половине высоты блока */
    padding: 0;
    /*background: url('/media/image/version3/header_logo.jpg') left top no-repeat;*/
    display: block;
    text-decoration: none;
    position: absolute;
}
header .mid .logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    header .midWrap {
        padding: 10px 15px;
        position: relative;
    }
    header .midWrap .mid {
        width: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: static;
    }
    header .midWrap .mid button.menu-button {
        width: 34px;
        height: 34px;
        margin: 0 10px 0 0;
        padding: 0;
        background: none;
        display: block;
        font-size: 0;
        text-indent: -9999px;
        position: relative;
        overflow: hidden;
        border: none;
    }
    header .midWrap .mid button.menu-button:focus {
        outline: none;
    }
    header .midWrap .mid button.menu-button span {
        width: auto;
        height: 4px;
        margin-top: -2px;
        left: 0;
        top: 50%;
        right: 0;
        background: #fff;
        display: block;
        position: absolute;
        transition: background 0s .2s;
    }
    header .midWrap .mid button.menu-button.on span {
        background: none;
    }
    header .midWrap .mid button.menu-button span::before,
    header .midWrap .mid button.menu-button span::after {
        content: '';
        width: 100%;
        height: 4px;
        left: 0;
        background: #fff;
        display: block;
        position: absolute;
        transition-duration: .2s, .2s;
        transition-delay: .2s, 0s;
    }
    header .midWrap .mid button.menu-button.on span::before,
    header .midWrap .mid button.menu-button.on span::after {
        transition-delay: 0s, .2s;
    }
    header .midWrap .mid button.menu-button span::before {
        top: -10px;
        transition-property: top, transform;
    }
    header .midWrap .mid button.menu-button.on span::before {
        top: 0;
        transform: rotate(45deg);
    }
    header .midWrap .mid button.menu-button span::after {
        bottom: -10px;
        transition-property: bottom, transform;
    }
    header .midWrap .mid button.menu-button.on span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    header .mid .logo {
        width: auto;
        height: 40px;
        margin: 0;
        position: static;
    }
    header .mid .logo img {
        width: auto;
        height: 100%;
    }
    header .midWrap .mid a.account-link {
        width: auto;
        height: 100%;
        padding: 0 15px;
        top: 0;
        right: 0;
        background: #e31f25;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        text-decoration: none;
    }
    header .midWrap .mid a.account-link span {
        font-size: 14px;
        color: #fff;
        line-height: 1;
    }
}
@media (max-width: 576px) {}

/* topMenu ----------*/
    header .mid .topMenu {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
}
header .mid .topMenu dl {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
header .mid .topMenu dl:first-child {
    margin: 0;
}
header .mid .topMenu dl dt {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
header .mid .topMenu dl dt a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 30px 16px;
    font-weight: 500;
    display: block;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}
header .mid .topMenu dl:last-child dt a {
    background: #e31f25;
}
header .mid .topMenu dl:hover dt a {
    background: #fff;
    color: #000;
}
header .mid .topMenu dl:last-child:hover dt a {
    background: #f35027;
    color: #fff;
}
header .mid .topMenu dl dd {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    position: absolute;
    transform: translateY(100%);
    box-shadow: 0 6px 4px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
    z-index: -1;
}
header .mid .topMenu dl:hover dd {
    opacity: 1;
    z-index: 999;
}
header .mid .topMenu dl dd a {
    width: auto;
    height: auto;
    margin: 0;
    padding: 4px 20px;
    display: block;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
}
header .mid .topMenu dl dd a:first-child {
    padding-top: 8px;
}
header .mid .topMenu dl dd a:last-child {
    padding-bottom: 8px;
}
header .mid .topMenu dl dd a:hover {
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    header .mid .topMenu {
        display: none;

        width: auto;
        margin: 15px 0 0;
        float: none!important;
        position: static;
    }
    header .mid .topMenu > dl {
        width: 50%;
    }
    header .mid .topMenu > dl dt a {
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
    }
    header .mid .topMenu > dl:last-child {
        width: auto;
        top: -10px;
        right: -15px;
        position: absolute;
        display: block;
    }
    header .mid .topMenu > dl:last-child dt a {
        height: 65px;
        padding: 0 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }
}
@media (max-width: 576px) {}

/* header - bot
--------------------------------------------------------------------------------------------------*/
header .botWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    background: url('/media/image/version3/header_banner_xl.jpg') center no-repeat;
    background-size: cover;
    position: relative;
}
header .botWrap .bot {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: 430px;
    margin: 0 auto;
    padding: 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}
header .botWrap .bot .banner {
    width: 310px;
    height: 310px;
    margin: -155px 0 0;
    padding: 80px 0 0;
    top: 50%;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    position: absolute;
    transition: background 0.3s;
}
header .botWrap .bot .banner:hover {
    background: rgba(0, 0, 0, 0.7);
}
header .botWrap .bot .banner p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    color: #fff;
    text-align: center;
}
header .botWrap .bot .banner p.big {
    text-transform: uppercase;
}
header .botWrap .bot .banner a.primeButton {
    width: 200px;
    margin: 20px auto 0;
}
header .botWrap .bot .voc {
    width: 350px;
    height: 60px;
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: center;
}
header .botWrap .bot .voc span {
    font-size: 20px;
    color: #4d4d4d;
    text-transform: uppercase;
    line-height: 60px;
}
header .botWrap .bot .voc2 {
    /*width: 350px;*/
    /*height: 60px;*/
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: center;
    position: absolute;
    top: 70px;
}
header .botWrap .bot .voc2 span {
    font-size: 31px;
    color: #e31f25;
    text-transform: uppercase;
    line-height: 42px;
}

@media (max-width: 992px) {
    header .botWrap .bot {
        width: auto;
        height: auto;
        padding: 30px 15px;
        display: block;
    }
    header .botWrap .bot .banner {
        display: none;
    }
    header .botWrap .bot .voc {
        width: auto;
        max-width: 400px;
        height: auto;
        margin: 30px auto 0;
    }
    header .botWrap .bot .voc2 {
        background: none;
        position: static;
    }
    header .botWrap .bot .voc2 span {
        font-size: 26px;
    }
}

/* header - scroll
--------------------------------------------------------------------------------------------------*/
@keyframes bounce{
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-10px)
    }
    60% {
        transform: translateY(-5px)
    }
}
@-webkit-keyframes bounce{
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-10px)
    }
    60% {
        -webkit-transform: translateY(-5px)
    }
}
@-moz-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-10px)
    }
    60% {
        -moz-transform: translateY(-5px)
    }
}
@-o-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -o-transform: translateY(0)
    }
    40% {
        -o-transform: translateY(-10px)
    }
    60% {
        -o-transform: translateY(-5px)
    }
}

header .scrollWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 0;
}
header .scrollWrap .scroll {
    width: 50px;
    height: 17px;
    margin: 0 auto;
    padding: 0;
    background: url('/media/image/version3/content_chevron_down_icon.png') center no-repeat;
    animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    -moz-animation: bounce 3s infinite;
    -o-animation: bounce 3s infinite;
}

/* content

----------------------------------------------------------------------------------------------------------------------*/
ul.list-r{
   list-style-image: url('/media/css/newstyle/img/gg.png'); 
}
ul.list-r li{
   padding-bottom: 3px;
}
.wrap > .content {
    width: 100%;
    /*min-width: 1280px;*/
    height: auto;
    margin: 0;
    padding: 0;
}
.wrap > .content.content-404 {
    padding: 0;
}
.content .page {
    width: auto;
    height: auto;
    min-height: 370px;
    margin: 0;
    padding: 0;
}
.content .page .wrap-center .block {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .page .wrap-center .pagination {
    margin: 30px 0;
    padding: 0;
}

@media (max-width: 992px) {
    .wrap > .content {
        padding: 0 15px;
    }
}

/* content - pageMain
--------------------------------------------------------------------------------------------------*/
.content .page.pageMain {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .pageMain .block {
    width: auto;
    height: auto;
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #e7e7e7;
}

/* blockCourses ----------*/
.content .pageMain .blockCourses {
    margin: 0;
    padding: 10px 0 0;
    border: none;
}
.content .pageMain .blockCourses .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.content .pageMain .blockCourses .inner .course {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 32px;
    background: #e6e6e6;
    position: relative;
}
.content .pageMain .blockCourses .inner .course .stripWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    left: -20px;
    top: -20px;
    position: absolute;
}
.content .pageMain .blockCourses .inner .course .stripWrap:before {
    content: ' ';
    width: 0;
    height: 0;
    left: 0;
    bottom: -20px;
    display: block;
    position: absolute;
    border-top: 20px solid;
    border-left: 20px solid transparent;
}
.content .pageMain .blockCourses .inner .course .stripWrap.red:before {
    border-top-color: #a13c1b;
}
.content .pageMain .blockCourses .inner .course .stripWrap.green:before {
    border-top-color: #1b6d1b;
}
.content .pageMain .blockCourses .inner .course .stripWrap .strip {
    width: auto;
    height: 40px;
    margin: 0;
    padding: 0 20px;
}
.content .pageMain .blockCourses .inner .course .stripWrap .strip:before {
    content: ' ';
    width: 0;
    height: 0;
    top: 0;
    right: -20px;
    display: block;
    position: absolute;
    border-top: 20px solid;
    border-right: 20px solid transparent;
}
.content .pageMain .blockCourses .inner .course .stripWrap .strip:after {
    content: ' ';
    width: 0;
    height: 0;
    right: -20px;
    bottom: 0;
    display: block;
    position: absolute;
    border-bottom: 20px solid;
    border-right: 20px solid transparent;
}
.content .pageMain .blockCourses .inner .course .stripWrap.red .strip {
    background: #df4c27;
}
.content .pageMain .blockCourses .inner .course .stripWrap.red .strip:before {
    border-top-color: #df4c27;
}
.content .pageMain .blockCourses .inner .course .stripWrap.red .strip:after {
    border-bottom-color: #df4c27;
}
.content .pageMain .blockCourses .inner .course .stripWrap.green .strip {
    background: #25a228;
}
.content .pageMain .blockCourses .inner .course .stripWrap.green .strip:before {
    border-top-color: #25a228;
}
.content .pageMain .blockCourses .inner .course .stripWrap.green .strip:after {
    border-bottom-color: #25a228;
}
.content .pageMain .blockCourses .inner .course .stripWrap .strip span {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
}
.content .pageMain .blockCourses .inner .course .img {
    width: auto;
    height: 184px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.content .pageMain .blockCourses .inner .course .img img {
    width: 100%;
}
.content .pageMain .blockCourses .inner .course h5 {
    margin: 15px 15px 10px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockCourses .inner .course p {
    margin: 0 15px 12px;
    padding: 0;
    font-size: 14px;
    color: #000;
}
.content .pageMain .blockCourses .inner .course a {
    margin: 0;
    left: 15px;
    bottom: 16px;
    font-size: 14px;
    color: #0aa4db;
    position: absolute;
}

@media (max-width: 992px) {
    .content .pageMain .blockCourses .inner .course {
        height: auto!important;
        margin: 30px 0 0;
    }
    .content .pageMain .blockCourses .inner .course .img {
        height: auto;
    }
}

/* blockAbout ----------*/
.content .pageMain .blockAbout {}
.content .pageMain .blockAbout .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.content .pageMain .blockAbout .inner h1 {
    margin: 0 0 30px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 35px;
    color: #df4c27;
    text-align: center;
}
.content .pageMain .blockAbout .inner > .row > div:first-child {
    border-right: 1px solid #999;
}
.content .pageMain .blockAbout .inner .about {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
}
.content .pageMain .blockAbout .inner .about .icon {
    width: 145px;
    height: 121px;
    margin: 0;
    padding: 0;
    background: url('/media/image/version3/content_desktop_icons.png') no-repeat;
}
.content .pageMain .blockAbout .inner .about.about1 .icon {
    background-position: 0 0;
}
.content .pageMain .blockAbout .inner .about.about2 .icon {
    background-position: -145px 0;
}
.content .pageMain .blockAbout .inner .about .text {
    width: calc(100% - 145px);
    height: auto;
    margin: 0;
    padding: 0 0 0 20px;
}
.content .pageMain .blockAbout .inner .about .text h5 {
    margin: 0;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000;
}
.content .pageMain .blockAbout .inner .about .text p {
    margin: 5px 0 0;
    padding: 0;
    font-size: 14px;
    color: #000;
}

@media (max-width: 992px) {
    .content .pageMain .blockAbout .inner h1 {
        font-size: 26px;
    }
    .content .pageMain .blockAbout .inner .about {
        display: block;
    }
    .content .pageMain .blockAbout .inner .row > div:not(:first-child) .about {
        margin-top: 30px;
    }
    .content .pageMain .blockAbout .inner .about .icon {
        width: 145px;
        height: 121px;
        margin: 0 auto;
    }
    .content .pageMain .blockAbout .inner .about.about2 .icon {
        background-position: -145px 0;
    }
    .content .pageMain .blockAbout .inner .about .text {
        width: 100%;
        text-align: center;
    }
}

/* blockPromo ----------*/
.content .pageMain .blockPromo {}
.content .pageMain .blockPromo .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.content .pageMain .blockPromo .inner > .row {
    margin-left: -25px;
    margin-right: -25px;
}
.content .pageMain .blockPromo .inner > .row > div {
    padding: 0 25px;
}
.content .pageMain .blockPromo .inner .mainText {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .pageMain .blockPromo .inner .mainText h1 {
    margin: 0 0 10px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockPromo .inner .mainText p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #000;
}
.content .pageMain .blockPromo .inner .mainText a {
    font-size: 14px;
    color: #0aa4db;
}
.content .pageMain .blockPromo .inner .video {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.content .pageMain .blockPromo .inner .video h3 {
    margin: 0 0 20px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockPromo .inner .video .primeButton {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .content .pageMain .blockPromo .inner > .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .content .pageMain .blockPromo .inner > .row > div {
        padding: 0 15px;
    }
    .content .pageMain .blockPromo .inner > .row > div:not(:first-child) .mainText {
        margin-top: 30px;
    }
    .content .pageMain .blockPromo .inner .mainText h1 {
        text-align: center;
    }
    .content .pageMain .blockPromo .inner .mainText p {
        text-align: center;
    }
    .content .pageMain .blockPromo .inner > .row > div:not(:first-child) .video {
        margin-top: 30px;
    }
    .content .pageMain .blockPromo .inner .video h3 {
        text-align: center;
    }
}

/* blockActions ----------*/
.content .pageMain .blockActions {
    padding-top: 17px;
}
.content .pageMain .blockActions .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.content .pageMain .blockActions .inner h1 {
    margin: 0 0 10px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockActions .inner p.sub {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #000;
}
.content .pageMain .blockActions .inner .action {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    padding: 20px 0;
    background: #e6e6e6;
}
.content .pageMain .blockActions .inner .action h5 {
    margin: 0 25px 15px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockActions .inner .action p {
    margin: 0 25px 15px;
    padding: 0;
    font-size: 14px;
    color: #000;
}
.content .pageMain .blockActions .inner .action .primeButton {
    margin: 0 15px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}
.content .pageMain .blockActions .inner .action .primeButton.red {
    /*padding: 22px 20px;*/
}

@media (max-width: 992px) {
    .content .pageMain .blockActions .inner h1 {
        font-size: 26px;
        text-align: center;
    }
    .content .pageMain .blockActions .inner p.sub {
        text-align: center;
    }
}

/* blockWeekPhoto ----------*/
.content .pageMain .blockWeekPhoto {
    padding-top: 17px;
}
.content .pageMain .blockWeekPhoto .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.content .pageMain .blockWeekPhoto .inner h1 {
    margin: 0 0 10px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockWeekPhoto .inner .links {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    top: 20px;
    right: 0;
    position: absolute;
}
.content .pageMain .blockWeekPhoto .inner .links a {
    margin: 0 0 0 28px;
    padding: 0;
    display: inline-block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #0aa4db;
    text-transform: uppercase;
}
.content .pageMain .blockWeekPhoto .inner .links a:first-child {
    margin: 0;
}
.content .pageMain .blockWeekPhoto .inner .photo {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
}
.content .pageMain .blockWeekPhoto .inner .photo img {
    width: 100%;
}

.content .pageMain .blockWeekPhoto .inner .photo .photoDesc {
    width: auto;
    height: auto;
    margin: 0;
    padding: 13px 25px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
}
.content .pageMain .blockWeekPhoto .inner .photo .photoDesc span {
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
}
.content .pageMain .blockWeekPhoto .inner .photo .photoDesc span.name {
    font-size: 26px;
    text-transform: uppercase;
}
.content .pageMain .blockWeekPhoto .inner .photo .photoDesc span.author {
    margin-left: 5px;
    font-size: 16px;
}

@media (max-width: 992px) {}

/* blockArticles ----------*/
.content .pageMain .blockArticles {
    padding-top: 17px;
}
.content .pageMain .blockArticles .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.content .pageMain .blockArticles .inner h1 {
    margin: 0 0 30px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockArticles .inner a.all {
    margin: 0;
    top: 20px;
    right: 0;
    display: inline;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif!important;
    font-size: 15px;
    color: #0aa4db;
    text-transform: uppercase;
    position: absolute;
}
.content .pageMain .blockArticles .inner .articles {
    margin: -30px -15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.content .pageMain .blockArticles .inner .articles > .box {
    width: 25%;
    padding: 30px 15px 0;
}
.content .pageMain .blockArticles .inner .articles article {
    height: 100%;
    background: #e6e6e6;
}
.content .pageMain .blockArticles .inner .articles article > a {
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-decoration: none;
}
.content .pageMain .blockArticles .inner .articles article .img-container {
    margin: -15px -15px 0;
    display: block;
    text-decoration: none;
}
.content .pageMain .blockArticles .inner .articles article .img-container .img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .pageMain .blockArticles .inner .articles article .img-container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .pageMain .blockArticles .inner .articles article h2.title {
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}
.content .pageMain .blockArticles .inner .articles article p.desc {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 4;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    display: -webkit-box;
    /*display: box;*/
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}
.content .pageMain .blockArticles .inner .articles article .more {
    margin-top: auto;
}

@media (max-width: 992px) {
    .content .pageMain .blockArticles .inner .articles {
        flex-direction: column;
    }
    .content .pageMain .blockArticles .inner .articles > .box {
        width: 100%;
    }
}

/* blockNews ----------*/
.content .pageMain .blockNews {
    padding-top: 17px;
}
.content .pageMain .blockNews .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.content .pageMain .blockNews .inner h1 {
    margin: 0;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockNews .inner a.all {
    margin: 0;
    top: 20px;
    right: 0;
    display: inline;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif!important;
    font-size: 15px;
    color: #0aa4db;
    text-transform: uppercase;
    position: absolute;
}
.content .pageMain .blockNews .inner .new {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 36px;
    background: #e6e6e6;
    position: relative;
}
.content .pageMain .blockNews .inner .new .img {
    width: auto;
    height: 140px;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
}
.content .pageMain .blockNews .inner .new .img img {
    height: 140px;
}
.content .pageMain .blockNews .inner .new h5 {
    margin: 15px 25px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockNews .inner .new p {
    margin: 0 25px 15px;
    padding: 0;
    font-size: 14px;
    color: #000;
}
.content .pageMain .blockNews .inner .new a {
    margin: 0;
    left: 25px;
    bottom: 20px;
    font-size: 14px;
    color: #0aa4db;
    position: absolute;
}

@media (max-width: 992px) {}

/* blockSocial ----------*/
.content .pageMain .blockSocial {}
.content .pageMain .blockSocial .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .pageMain .blockSocial .inner h3 {
    margin: 0;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockSocial .inner .share {
    width: 856px;
    margin-top: -12px;
    left: 345px;
    top: 50%;
    text-align: center;
    position: absolute;
}
.content .pageMain .blockSocial .inner .links {
    margin-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.content .pageMain .blockSocial .inner .links .link {
    width: 40px;
    height: 40px;
    background: #03bde9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
}
.content .pageMain .blockSocial .inner .links .link:not(:first-child) {
    margin-left: 10px;
}
.content .pageMain .blockSocial .inner .links .link.vk {
    background: #45668e;
}
.content .pageMain .blockSocial .inner .links .link.tg {
    background: #0088cc;
}
.content .pageMain .blockSocial .inner .links .link.ok {
    background: #ed812b;
}
.content .pageMain .blockSocial .inner .links .link i {
    font-size: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
}

@media (max-width: 992px) {
    .content .pageMain .blockSocial .inner h3 {
        text-align: center;
        float: none!important;
    }
    .content .pageMain .blockSocial .inner .share {
        width: auto;
        margin-top: 20px;
        position: static;
    }
    .content .pageMain .blockSocial .inner {
        flex-direction: column;
    }
    .content .pageMain .blockSocial .inner .links {
        margin: 20px 0 0;
    }
}

/* blockVK ----------*/
.content .pageMain .blockVK {}
.content .pageMain .blockVK .inner {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.content .pageMain .blockVK .inner h3 {
    margin: 0;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.content .pageMain .blockVK .inner #vk_comments {
    margin-top: 25px;
}

/* content - other pages
--------------------------------------------------------------------------------------------------*/
.page .registerButtonWrap {
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 30px auto 0;
    padding: 0;
    clear: both;
}
.page .registerButtonWrap a.primeButton {
    width: 260px;
    margin: 0 auto;
}

.page .wrap-center {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}
.page .wrap-center .block-img-contacts {
    width: auto;
    height: auto;
    max-height: 500px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.page .wrap-center .block-img-contacts img {
    width: 100%;
    height: auto;
}
.page.pageStoimost .wrap-center .block-img-contacts img {
    width: auto;
    height: 500px;
}

@media (max-width: 992px) {
    .page .wrap-center .block-img-contacts {
        display: none;
    }
}

/* blockArticles ----------*/
.content .page .wrap-center .blockArticles {
    padding-top: 30px;
}
.content .page .wrap-center .blockArticles .inner {
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.content .page .wrap-center .blockArticles .inner h1 {
    margin: 0 0 30px;
    padding: 0;
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}
.content .page .wrap-center .blockArticles .inner .articles {
    margin: -30px -15px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.content .page .wrap-center .blockArticles .inner .articles > .box {
    width: 33.3333%;
    padding: 30px 15px 0;
}
.content .page .wrap-center .blockArticles .inner .articles article {
    height: 100%;
    background: #e6e6e6;
}
.content .page .wrap-center .blockArticles .inner .articles article a {
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-decoration: none;
}
.content .page .wrap-center .blockArticles .inner .articles article .img-container {
    margin: -15px -15px 0;
    display: block;
    text-decoration: none;
}
.content .page .wrap-center .blockArticles .inner .articles article .img-container .img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .page .wrap-center .blockArticles .inner .articles article .img-container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .page .wrap-center .blockArticles .inner .articles article h2.title {
    font-family: 'FranklinGothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}
.content .page .wrap-center .blockArticles .inner .articles article p.desc {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000;
}
.content .page .wrap-center .blockArticles .inner .articles article .more {
    margin-top: auto;
}
.content .page .wrap-center .blockArticles .inner a.back {
    width: auto;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
}

@media (max-width: 992px) {
    .content .page .wrap-center .blockArticles .inner h1 {
        font-size: 30px;
    }
    .content .page .wrap-center .blockArticles .inner .articles {
        flex-direction: column;
    }
    .content .page .wrap-center .blockArticles .inner .articles > .box {
        width: 100%;
    }
    .content .page .wrap-center .blockArticles .inner a.back {
        display: block;
    }
}

/* footer
----------------------------------------------------------------------------------------------------------------------*/
footer {
    width: 100%;
    /*min-width: 1280px;*/
    height: auto;
    margin: auto 0 0;
    padding: 0;
    background: #1a1a1a;
}

@media (max-width: 992px) {}

/* footer - top
--------------------------------------------------------------------------------------------------*/
footer .top {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0 15px;
}
footer .top > .row {
    margin-left: -30px;
    margin-right: -30px;
}
footer .top > .row > div {
    padding: 0 30px;
}
footer .top h5 {
    margin: 0;
    padding: 0 0 10px;
    font-size: 14px;
    color: #0aa4db;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #4f4e4e;
}
footer .top .col {
    width: auto;
    height: auto;
    margin: 10px 0 0;
    padding: 0;
    position: relative;
}
footer .top .col p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #d5d5d5;
}
footer .top .col p:last-child {
    margin: 0;
}
footer .top .col p a {
    color: #d5d5d5;
}
footer .top .col .cert {
    width: 355px;
    height: 94px;
    margin: -47px 0 0 -177px;
    padding: 0;
    left: 50%;
    top: 50%;
    /*background: url('/media/image/version3/footer_cert.png') left top no-repeat;*/
    position: absolute;
}
footer .top .col .cert img {
    width: 100%;
    height: auto;
}
footer .top .col ul {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .top .col ul li {
    margin: 0 0 5px;
}
footer .top .col ul li:last-child {
    margin: 0;
}
footer .top .col ul li a {
    font-size: 14px;
    color: #d5d5d5;
}
footer .top .col .fotokto {
    margin: 10px 0 0;
}

@media (max-width: 992px) {
    footer .top {
        padding: 30px 15px;
    }
    footer .top > .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    footer .top > .row > div {
        padding: 0 15px;
    }
    footer .top h5 {
        text-align: center;
    }
    footer .top .col {
        margin-top: 15px;
        height: auto!important;
    }
    footer .top .col p {
        margin: 0 0 15px!important;
        text-align: center;
    }
    footer .top .col .cert {
        width: 100%;
        height: auto;
        margin: 0 0 15px;
        position: static;
    }
    footer .top .col ul li {
        text-align: center;
    }
}

/* footer - bot
--------------------------------------------------------------------------------------------------*/
footer .botWrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    background: #262626;
}
footer .botWrap .bot {
    /*width: 1200px;*/
    width: auto;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 7px 0;
    text-align: left;
}
footer .botWrap .bot span {
    padding-right: 15px;
    display: inline-block;
    font-size: 13px;
    color: #c2c2c2;
}
footer .botWrap .bot a {
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    font-size: 13px;
    color: #c2c2c2;
    border-left: 1px solid #8a8a8a;
}
footer .botWrap .bot a:last-child {
    padding-right: 0;
}

@media (max-width: 992px) {
    footer .botWrap {
        padding: 15px;
    }
    footer .botWrap .bot {
        padding: 0;
        text-align: center;
    }
    footer .botWrap .bot span {
        padding: 0;
        display: block;
    }
    footer .botWrap .bot a {
        padding: 10px 0 0;
        display: block;
        border: none;
    }
}

/* modal
----------------------------------------------------------------------------------------------------------------------*/
.modal .modal-dialog {
    box-shadow: -6px 6px 0 #73a1cd;
}
.modal .modal-dialog .modal-content {
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: none;
}
.modal .modal-dialog .modal-content button.close {
    width: 26px;
    height: 26px;
    top: -6px;
    right: -6px;
    background: #df4c27;
    color: #fff;
    text-shadow: none;
    float: none;
    position: absolute;
    border: none;
    opacity: 1;
    transition: all 0.3s;
    z-index: 99;
}
.modal .modal-dialog .modal-content button.close:hover {
    background: #f35027;
}
.modal .modal-dialog .modal-content iframe {
    margin: 0 0 -5px;
    padding: 0;
}
.modal .modal-dialog .modal-content .img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.modal .modal-dialog .modal-content .img img {
    width: 100%;
}
.modal .modal-dialog .modal-content form {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.modal .modal-dialog .modal-content form h5 {
    margin: 0 0 15px;
    font-size: 16px;
}
.modal .modal-dialog .modal-content form label {
    margin-bottom: 10px;
    font-weight: 400;
}
.modal .modal-dialog .modal-content form input[type='text'],
.modal .modal-dialog .modal-content form input[type='password'],
.modal .modal-dialog .modal-content form textarea {
    margin-bottom: 10px;
    border-radius: 0;
}
.modal .modal-dialog .modal-content form textarea {
    resize: vertical;
}
.modal .modal-dialog .modal-content form button {
    padding-left: 30px;
    padding-right: 30px;
    border: none;
}
.modal .modal-dialog .modal-content form .answer {
    display: none;
}

/* videoModal ----------*/
.modal#videoModal .modal-dialog {
    width: 853px;
}

/* callModal ----------*/
.modal#callModal .modal-dialog {
    width: 990px;
}
.modal#callModal .modal-dialog .modal-content .img img {
    box-shadow: 0 0 15px #555;
}
.modal#callModal .modal-dialog .modal-content form {
    padding-top: 30px;
    padding-right: 30px;
}

/*--------------------------------------------------------------------------------------------------------------------*/