﻿
:root {
    --font-family: 'Roboto',Tahoma, Geneva, Verdana, sans-serif;
    --second-family: "SourceSansPro", sans-serif;
    --controls-background-color: #f9f9f9;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    min-height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.1875;
    font-weight: normal;
    width: 100%;
    min-width: 300px;
    background: white;
    color: black;
    padding: 0;
    margin: 0;
    letter-spacing: 0.02em;
    height: auto;
    min-height: 100vh;
    background-image: url(/img/footer_bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

    body > div {
        flex: 1;
    }


*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}

.container {
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
}


.icon:before {
    margin: 0;
}

.strong,
strong,
b {
    color: #505050;
    font-weight: bold;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: black;
}

#content a:not(.btn),
.modal-body a:not(.btn) {
    color: #000;
    text-decoration: underline;
}


label i.icon,
a i.icon {
    margin-right: 0.7em;
}

label i.icon-post,
a i.icon-post {
    margin-left: 0.7em;
    margin-right: 0;
}

a.link {
    text-decoration: underline;
}

.relative {
    position: relative;
}

.nowrap {
    white-space: nowrap;
}

.d-static {
    position: static;
}

.d-fixed {
    position: fixed;
}

.pt5 {
    padding-top: 5px;
}

.pt22 {
    padding-top: 22px !important;
}

.mt4 {
    margin-top: 4px !important;
}

.mb13 {
    margin-bottom: 13px !important;
}

.fw-bold {
    font-weight: bold;
}

.fw-normal {
    font-weight: normal;
}

.border-top {
    border-top: 1px solid #CCCCCC;
}

.w100p {
    width: 100% !important;
}

.relative {
    position: relative;
}

@media (min-width: 576px) {
    .mb13-sm {
        margin-bottom: 13px !important;
    }

    .mb26-sm {
        margin-bottom: 26px !important;
    }

    .mt0-sm {
        margin-top: 0 !important;
    }

    .mt50-sm {
        margin-top: 50px !important;
    }
}

@media (min-width: 768px) {
    .mt0-md {
        margin-top: 0 !important;
    }

    .mt4-md {
        margin-top: 4px !important;
    }

    .mt30-md {
        margin-top: 30px !important;
    }

    .mt55-md {
        margin-top: 55px !important;
    }

    .mt100-md {
        margin-top: 100px !important;
    }

    .mt180-md {
        margin-top: 180px !important;
    }

    .pt6-md {
        padding-top: 6px !important;
    }
}

@media (min-width: 992px) {
    .pt5-lg {
        padding-top: 5px !important;
    }

    .pt22-lg {
        padding-top: 22px !important;
    }

    .mt40-lg {
        margin-top: 40px !important;
    }

    .mt50-lg {
        margin-top: 50px !important;
    }

    .mt60-lg {
        margin-top: 60px !important;
    }

    .mt180-lg {
        margin-top: 180px !important;
    }

    .mt0-lg {
        margin-top: 0px !important;
    }

    .mt9-lg {
        margin-top: 9px !important;
    }

    .mt250-lg {
        margin-top: 250px !important;
    }

    .mb13-lg {
        margin-bottom: 13px !important;
    }
}

@media (min-width: 1300px) {
    .mt0-xl {
        margin-top: 0 !important;
    }

    .mt100-xl {
        margin-top: 100px !important;
    }

    .mt280-xl {
        margin-top: 280px !important;
    }

    .pt22-xl {
        padding-top: 22px !important;
    }
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.underline {
    text-decoration: underline;
}

.fright {
    float: right;
}

.smaller {
    font-size: 80%;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.nav > li {
    margin-right: 2em;
}

    ul.nav > li:last-child {
        margin-right: 0;
    }

    ul.nav > li > a {
        display: inline-block;
    }

.nav-fill {
    justify-content: space-between;
}

ul.nav-fill > li {
    margin-right: 0;
}


@media (min-width: 1300px) {
    .nav-fill-xl {
        justify-content: space-between;
    }

    ul.nav-fill-xl > li {
        margin-right: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 48px;
    height: 48px;
    width: 190px;
    text-align: center;
    vertical-align: middle;
    background: #000;
    color: #FFF;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    font-family: var(--font-family);
    border-radius: 4px;
}

.btn-auto-width {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.btn:not(span):hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.btn-gray {
    background: #C7CDD6;
    border-color: #C7CDD6;
}

    .btn-gray .icon {
        color: inherit;
    }

.btn-bordered {
    background: #FFFFFF;
    border: 1px solid #000000;
    color: #000000;
}


.btn-80-height {
    line-height: 80px !important;
    height: 80px !important;
}

.btn-tr-wh {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-tr-rd {
    background: transparent;
    border: 2px solid #F93943;
    color: #F93943;
}

    .btn-tr-wh:hover,
    .btn-tr-rd:hover {
        background: #F93943;
        border: 2px solid #F93943;
        color: white;
        box-shadow: none;
    }

.btn-tr-bl {
    background: transparent;
    border: 2px solid #233E70;
    color: #808080;
}

    .btn-tr-bl:hover {
        background: #233E70;
        border: 2px solid #233E70;
        color: white;
        box-shadow: none;
    }

.btn-fs14 {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
}

.form-lang,
.form-logout,
.form-login {
    width: auto;
    display: block;
    font-size: 12px;
    line-height: 40px;
    height: 40px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
}

.form-logout,
.form-login {
    background: #EDEDED;
    color: #F16036;
    border-color: #EDEDED;
}


header {
    position: relative;
    padding-top: 24px;
    padding-bottom: 52px;
}

    header .container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    header img.logo {
        display: block;
        width: 64%;
    }

    header img.logo_org {
        display: block;
        width: 100%;
    }

.uname {
    /* margin-top: 12px; */
    font-size: 14px;
    display: inline-block;
    margin-bottom: 6px;
}

#content {
    /* font-size: 16px; */
    /* padding-bottom: 84px; */
    /* padding-top: 35px; */
}

.content-no-pad #content {
    padding-bottom: 0 !important;
}


#content .container {
    padding-top: .1px;
    padding-bottom: .1px;
}

    #content .container .container {
        padding: 0;
        width: 100%;
        margin: 20px auto 0 auto;
    }


#content h1 {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 11px;
}

#content .h1-desc {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #999999;
    margin-top: 0;
    margin-bottom: 0;
}


#content h1.slogan {
    max-width: 600px;
}

#content h3,
#content h2 {
    font-weight: normal;
    font-size: 25px;
    line-height: 36px;
    text-transform: none;
    color: #000000;
    margin: 35px 0 23px;
}

    #content h2 strong {
        font-weight: 900;
    }

#content h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 12px 0 20px;
}

#content p,
#content ul {
    margin: 1em 0;
}

    #content ul ul li {
        margin: .5em 0;
    }

#content div div > p:first-child {
    margin-top: 0;
}

#content ul {
    padding-left: 20px;
}

/*#content > .container {
    padding-bottom: 84px;
}*/

#content section {
    margin-top: 40px;
    position: relative;
}

footer {
    color: black;
    position: relative;
    font-size: 13px;
    margin-top: 89px;
    margin-left: -12px;
    margin-right: -12px;
}

    footer .container {
        padding-top: 21px;
        padding-bottom: 24px;
        border-top: 1px solid #000000;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    footer a {
        color: black;
        text-decoration: underline;
    }

    footer .media-br {
        display: none;
    }

    footer .dev {
        margin-top: 6px;
    }

.course-image {
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 12px;
}

section.bordered {
    border-top: 2px solid #000000;
}

.course-description {
    word-break: break-word;
}


.course-file-list .ico {
    width: 32px;
    margin-right: 6px;
}

.course-file-list div {
    margin-bottom: 12px;
}

.course-file-list a {
    display: flex;
    align-items: center;
    text-decoration: underline;
}



/* modal */
.modal-open {
    overflow: hidden;
}


.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: +15000;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background: url('/img/modal-bg.png') 0 0 repeat;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: auto;
    padding: 0;
    background: white;
    width: 100%;
    max-width: 940px;
    margin: 1.75em auto;
    max-height: calc(100vh - 3.5em);
}

.modal-dialog-scrollable {
}


.modal-dialog .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    outline: 0;
    max-height: calc(100vh - 1rem);
}

.modal-dialog .modal-header {
    padding: 12px 40px 12px 24px;
    position: relative;
}

.modal-dialog h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    padding-top: 6px;
    margin-bottom: 0;
    margin-top: 3px;
}

.modal-dialog .close {
    position: absolute;
    right: 11px;
    top: 21px;
    font-size: 18px;
    line-height: 15px;
    /*! color: #F16036; */
}

    .modal-dialog .close:hover {
        color: #9a3315;
    }

.modal-dialog .modal-body {
    overflow-y: auto;
    padding: 12px 24px 0 16px;
    font-size: 14px;
    margin-bottom: 24px;
}

    .modal-dialog .modal-body ul,
    .modal-dialog .modal-body ol {
        padding-left: 1em;
    }

    .modal-dialog .modal-body ul,
    .modal-dialog .modal-body ol,
    .modal-dialog .modal-body p {
        margin: 1em 0;
    }

        .modal-dialog .modal-body ul:first-child,
        .modal-dialog .modal-body ol:first-child,
        .modal-dialog .modal-body p:first-child {
            margin-top: 0;
        }




.overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: transparent url('/img/overlay.png') 0 0 repeat;
    z-index: +20000;
}

    .overlay .loader {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: transparent url('/img/ajax-loader.gif') center center no-repeat;
    }

/*
#business-program .date-section .descr {
    font-size: 14px;
    line-height: 16px;
    margin-top: 6px;
    padding-left: 25px;
}

    #business-program .date-section .descr ~ .custom-checkbox {
        margin-top: 22px;
    }*/

ul.lk_menu {
    list-style: none !important;
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    align-content: start;
    gap: 18px;
}

.lk_menu img {
    width: 10px;
    margin-top: 3px;
}

.lk_menu a {
    text-decoration: underline;
}

.lk_menu li {
    display: flex;
    align-items: start;
    align-content: start;
    gap: 8px;
}



#content .dates-list .h2_with_title,
#content .dates-list .h2,
#content .dates-list h2 {
    margin: 0 0 12px 0;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
    border-radius: 8px;
    padding: 8px;
    height: auto;
    min-height: 40px;
    background: #00cf00;
}

    #content .dates-list h2 img {
        width: 24px;
        height: 24px;
    }

#content .dates-list .h2_with_title {
    gap: 32px;
    flex-wrap: wrap;
}

    #content .dates-list .h2_with_title > div:first-child {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        gap: 12px;
    }



#content .dates-list .h3 {
    margin: 0 0 12px 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #D6D9DA;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
    border-radius: 8px;
    padding: 8px;
    background: #334047;
}

    #content .dates-list .h3 img {
        width: 24px;
        height: 22px;
        margin-top: 2px;
    }

    #content .dates-list .h3 .title {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

        #content .dates-list .h3 .title .place {
            line-height: 150%;
        }

    #content .dates-list .h3 .address {
        color: #959B9F;
    }

#content .dates-list .h4 {
    margin: 0 0 12px 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
    border-radius: 8px;
    padding: 8px;
    height: 40px;
    background: #bbc6cc;
}

    #content .dates-list .h4 img {
        width: 24px;
        height: 24px;
    }

#content .dates-list .program-items {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

#content .dates-list .program-item {
    margin: 0 0 4px 0;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: row;
    padding: 8px;
    gap: 12px;
}

    #content .dates-list .program-item .custom-checkbox {
        flex-basis: 24px;
        flex-shrink: 0;
    }

    #content .dates-list .program-item .description {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0;
        font-size: 18px;
        line-height: 133%;
        color: #323232;
    }

    #content .dates-list .program-item .time {
        font-weight: 700;
    }

    #content .dates-list .program-item .title {
        font-weight: 500;
    }

    #content .dates-list .program-item .ico {
        flex: 0 0 22px;
    }

@media (max-width: 767px) {
    .modal-dialog .modal-body .btn {
        display: block;
        width: 100%;
    }

    #content .dates-list .h2_with_title {
        flex-direction: column;
        height: auto;
        gap: 12px;
        align-items: start;
    }
}

@media (min-width: 576px) {
    header {
        padding-top: 41px;
        padding-bottom: 60px;
    }

        header .container {
            gap: 40px;
        }

        header img.logo {
            width: 300px;
        }

    #content h1 {
        font-size: 20px;
        margin-bottom: 28px;
    }

    #content .h1-desc {
        font-size: 13px;
    }

    ul.lk_menu {
        flex-direction: row;
    }

    #content section {
        margin-top: 49px;
    }

    #content .form {
        padding: 24px;
        margin-left: 0;
        margin-right: 0;
    }

    footer {
        padding-bottom: 38px;
        margin-top: 57px;
        margin-left: 0;
        margin-right: 0;
    }

        footer .container {
            gap: 24px;
        }

            footer .container > div {
                text-align: center;
            }

        footer .media-br {
            display: block;
        }

    #content .dates-list .h3 {
        font-size: 18px;
    }

        #content .dates-list .h3 img {
            width: 51px;
            height: 47px;
            margin-top: 2px;
        }

        #content .dates-list .h3 .title .place {
            line-height: 133%;
        }

    #content .dates-list .program-item .description {
        flex-direction: row;
        gap: 20px;
    }

    #content .dates-list .program-item .time {
        flex-basis: 144px;
        flex-shrink: 0;
    }
}

@media (min-width: 768px) {
    body {
        background-position: bottom center;
    }


    header img.logo_org {
        width: 540px;
    }

    #content h1 {
        font-size: 28px;
    }

    footer {
        padding-bottom: 18px;
        margin-top: 87px;
    }

        footer .container {
            gap: 24px;
            flex-direction: row;
            align-items: end;
            justify-content: space-between;
        }

            footer .container > div {
                text-align: left;
            }

    .modal-dialog .modal-body {
        padding: 12px 24px 0 16px;
        font-size: 16px;
    }

        .modal-dialog .modal-body ul,
        .modal-dialog .modal-body ol {
            padding-left: 1.75em;
        }
}

@media (min-width: 992px) {

    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .modal-dialog {
        border-radius: 12px;
    }
}

@media (min-width: 1300px) {
    body {
        background-size: contain;
    }

    header img.logo {
        width: 340px;
    }

    header img.logo_org {
        width: 600px;
    }

    #content h1 {
        max-width: 1180px;
    }
}
