/* general */

body {
    font-family: 'DIN Pro', sans-serif;
    font-style: normal;
    font-size: 14px;
}



.wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background: #ECF0F6;
}


h1 {
    font-weight: bold;
    font-size: 30px;

}

.title-h1 {
    margin: 13px 0;
}

h2 {
    font-weight: bold;
    font-size: 26px;
}

h3 {
    font-weight: bold;
    font-size: 21px;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-weight: bold;
    font-size: 14px;
}

p {
    margin-bottom: 0.5rem;
}


a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
}




.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
}

.breadcrumbs-link {
    text-decoration: underline;
    color: #114E7A;
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
    margin-left: 5px;
}

.breadcrumbs-link:hover {
    color: #83B1E5;
}

.breadcrumb {
    padding: 0;
    background-color: transparent;
    margin: 0;
    margin-left: 5px;
    margin-right: 5px;
}

.breadcrumb a {
    color: #114E7A;
}

.breadcrumb a:hover {
    color: #83B1E5;
}



.conteiner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width:1100px) {
    .conteiner {
        padding: 0 5px;
    }
}


ol {
    counter-reset: counterName;
    padding-left: 0;
}

ul {
    padding-left: 30px;
}

li {
    list-style: none;
}

ol li:before {
    counter-increment: counterName;
    content: counters(counterName, "-") ") ";
    padding-right: 13px;
}


ul li {
    position: relative
}

ul li:before {
    content: '';
    display: inline-block;
    background: #70A5E1;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 14px;
}

.blue-links {
    font-weight: bold;
    color: #fff;
    background: #004171;
    font-size: 16px;
    padding: 4px 25px;
    border: 3px solid transparent;
    border-radius: 7px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.blue-links:hover {
    color: #004171;
    background: #fff;
    border: 3px solid #004171;
}





@media (max-width: 800px) {
    .blue-links {
        max-width: 230px;
        margin: 0 auto;
    }
}

table {
    border-collapse: separate;
    width: 100%;
    border-spacing: 7px;
}



td {
    text-align: center;
    padding: 7px 15px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    padding: 8px 13px;
    width: 25%;
}

.information-page {
    background: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 0px 1px 0px 0px;
    padding: 10px 20px;
}





/* index.html */
/* header */

.header {
    height: 85px;
    margin-top: 15px;
    padding: 8px 16px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    border-radius: 5px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 700px) {
    .header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
    }
}

@media (max-width: 400px) {
    .header {
        padding: 8px 9px;
        font-size: 12px;
    }
}


.header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 24px;
}

.header-block a {
    color: #000;
}

.header-block a:hover {
    color: #004171;
}

@media (max-width:800px) {
    .header .header-contacts {
        display: none;
    }
}


.header-block svg {
    margin-right: 15px;
}

@media (max-width:400px) {
    .header-block svg {
        margin-right: 0;
        width: 60px;
    }
}

@media (max-width:400px) {
    .header-block svg image {
        margin-right: 0;
        width: 60px;
    }
}

.header-block img {
    margin-right: 15px;
}


@media (max-width:900px) {
    .header-block img {
        margin-right: 10px;
    }
}

@media (max-width:400px) {
    .header-block img {
        width: 25px;
    }
}


.header-logo {
    font-weight: bold;
    line-height: 20px;
}

@media (max-width:400px) {
    .header-logo img {
        width: 60px;
    }
}


.header-phone {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 800px) {
    .header .header-phone {
        display: none;
    }
}

.header-feedback {
    font-size: 16px;
}

@media (max-width: 800px) {
    .header .header-feedback {
        display: none;
    }
}



.header-feedback a.header-feedback-border-bottom {
    color: #00406F;
    border-bottom: 2px dashed #004171;
}


.header-enter-bvi-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 700px) {
    .header-enter-bvi-open {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.header-enter {
    font-size: 16px;
    margin-right: 30px;
}

@media (max-width: 700px) {
    .header-enter {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-right: 0;
    }
}



.header-enter a {
    text-decoration: underline;
}

@media (max-width: 400px) {
    .header-enter a {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .mobile-none {
        display: none;
    }
}

.font-family {
    font-family: auto;
}

@media (max-width: 700px) {
    .header-another-version {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
}

@media (max-width: 500px) {
    .header-another-version {
        width: 150px;
    }
}



/* header-mobile-vision */


.header-mobile-vision {
    background: #5591D5;
    height: 40px;
    width: 100%;
    display: none;
    margin: 7px 0;
    border-radius: 5px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}




@media (max-width: 800px) {
    .header-mobile-vision {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header-mobile-vision .header-block a {
    color: #fff;
}

@media (max-width: 400px) {
    .header-mobile-vision .header-block a {
        font-size: 15px;
    }
}



.header-mobile-vision .header-feedback a.header-feedback-border-bottom {
    border-bottom: 2px dashed #fff;
}


/* burger */


.header-burger {
    background-color: transparent;
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 4;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.header-burger-line {
    display: block;
    width: 25px;
    height: 4px;
    background-color: #000;
    position: absolute;
    top: calc(50% - 2px);
}

.header-burger-line:before {
    content: '';
    display: block;
    width: 25px;
    height: 4px;
    background-color: #000;
    position: absolute;
    top: -8px;
}

.header-burger-line:after {
    content: '';
    display: block;
    width: 25px;
    height: 4px;
    background-color: #000;
    position: absolute;
    top: 8px;
}

.header-burger.header-burger-active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: fixed;
    top: 48px;
}



.header-burger-active .header-burger-line {}

.header-burger-active .header-burger-line:before {}

.header-burger-active .header-burger-line:after {}


/* header-menu */

.header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 90px 20px 20px 20px;
    width: 100%;
    background: #fff;
    z-index: 3;
    height: 100vh;
    overflow-y: scroll;
}


/* accordeon */


.ui-accordion-header {
    padding: 10px;
    background: #fff;
    color: #413982;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 20px;
}

/*
.ui-accordion-header:hover {
    background: #004171;
    color: #fff;
}
*/
.ui-accordion-header:hover {
    text-decoration: underline;
}

/*
.ui-accordion-header.ui-state-active {
    background: #004171;
    color: #fff;
}
*/

.ui-accordion-content {
    background: #fff;
    padding: 0 0 20px 30px;
}

.accordion-item a {
    display: inline-block;
    padding: 10px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 20px;
}

.accordion-item a:hover {
    text-decoration: underline;
}


.accordion .ui-accordion-header {
    position: relative;
    display: inline-block;
}


.accordion-header:after {
    content: '';
    position: absolute;
    top: 18px;
    right: -13px;
    display: inline-block;
    width: 20px;
    height: 13px;
    background: url(../images/index/down.png);
    background-repeat: no-repeat;
}

/*
.accordion-header:hover:after {
    background: url(../images/index/down-white.png);
    background-repeat: no-repeat;
}



.ui-accordion-header-active:after {
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    display: inline-block;
    width: 20px;
    height: 13px;
    background-image: url(../images/index/up-white.png);
    background-repeat: no-repeat
}

.ui-accordion-header-active:hover:after {
    background-image: url(../images/index/up-white.png);
    background-repeat: no-repeat
}
/*



/* header-nav */

.header-nav {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 13px;
}

@media (max-width: 1100px) {
    .header-nav {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .header-nav {
        grid-template-columns: 1fr 1fr;
        margin-top: 0;
        grid-gap: 5px;
    }
}

.header-nav-block {
    display: block;
    width: 100%;
    max-width: 210px;
    height: 95px;
    background: #004171;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: center;
    font-weight: bold;
    color: #fff;
    padding-left: 100px;
    padding-top: 24px;
}

@media (max-width: 1100px) {
    .header-nav-block {
        margin: 0 auto;
    }
}

@media (max-width: 800px) {
    .header-nav-block {
        max-width: 100%;
        padding-left: 0;
        background-position-x: center;
        font-size: 11px;
        background-position-y: 10px;
        padding-top: 72px;
        text-align: center;
    }
}


.header-nav-block:hover {
    background: #91BBEA;
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: center;
    color: #004171;
}

@media (max-width: 800px) {
    .header-nav-block:hover {
        background: #91BBEA;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: 10px;
        color: #004171;
    }
}



.nav-block-img1 {
    background-image: url(../images/index/header-menu-icon-white-1.png);
}

.nav-block-img1:hover {
    background-image: url(../images/index/header-menu-icon-blue-1.png);
}





.nav-block-img2 {
    background-image: url(../images/index/header-menu-icon-white-2.png);
}

.nav-block-img2:hover {
    background-image: url(../images/index/header-menu-icon-blue-2.png);
}






.nav-block-img3 {
    background-image: url(../images/index/header-menu-icon-white-3.png);
}

.nav-block-img3:hover {
    background-image: url(../images/index/header-menu-icon-blue-3.png);
}






.nav-block-img4 {
    background-image: url(../images/index/header-menu-icon-white-4.png);
}

.nav-block-img4:hover {
    background-image: url(../images/index/header-menu-icon-blue-4.png);
}

@media (max-width: 1100px) {
    .nav-block-img5 {
        display: none;
    }
}



.nav-block-img5 {
    background-image: url(../images/index/header-menu-icon-white-5.png);
}


.nav-block-img5:hover {
    background-image: url(../images/index/header-menu-icon-blue-5.png);
}







/* page */


.page {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width:800px) {
    .page {
        margin-top: 5px;
    }
}


/* page-left */


.page-left {
    width: 100%;
    max-width: 760px;
}

@media (max-width: 1100px) {
    .page-left {
        max-width: 100%;
    }
}


/* page-slider */

.page-slider {
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
}

.owl-carousel-item {
    position: relative;
}

.page-slider owl-carousel-item img {
    width: 100%;
    max-width: 760px;
    height: 300px;
    border-radius: 5px;
}

@media (max-width: 1100px) {
    .page-slider owl-carousel-item img {
        max-width: 100%;
        height: auto;
    }
}

.page-slider .owl-prev {
    position: absolute;
    top: 40%;
    left: -19px;
}

.page-slider .owl-next {
    position: absolute;
    top: 40%;
    right: -19px;
}

.page-slider .owl-prev:focus,
.page-slider .owl-next:focus {
    outline: none;
}

@media (max-width:1100px) {

    .page-slider .owl-prev,
    .page-slider .owl-next {
        display: none;
    }
}

.page-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 25px;
    text-align: center;
}

@media (max-width:800px) {
    .page-slider .owl-dots {
        bottom: 10px;
    }
}

.page-slider .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    cursor: pointer;
    background-color: #fff !important;
}

.page-slider .owl-dot:focus {
    outline: none;
}

.page-slider .owl-dot.active {
    background-color: #004171 !important;
    ;
}


.page-slider-title {
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    display: block;
    width: 270px;
    line-height: 30px;
    top: 50px;
    left: 40px;
}

@media (max-width:500px) {
    .page-slider-title {
        font-size: 35px;
        line-height: 13px;
    }
}

@media (max-width:400px) {
    .page-slider-title {
        top: 32px;
    }
}

.page-slider-title:hover {
    color: #fff;
}

.page-slider-title span {
    font-size: 28px;
    color: #004171;
    display: block;
    padding-top: 25px;
}

@media (max-width:500px) {
    .page-slider-title span {
        font-size: 20px;
    }
}



/* page-front-process */

.page-front-process {
    padding: 25px 0;
    text-align: center;
}

@media (max-width:800px) {
    .page-front-process {
        padding: 10px 0 20px 0;
    }
}

.page-front-process h2 {
    text-align: center;
    margin-bottom: 25px;
}

.page-front-process-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-front-process-flex-block {
    width: 130px;
}

@media (max-width: 800px) {
    .page-front-process-flex-block {
        width: 75px;
    }
}

@media (max-width: 400px) {
    .page-front-process-flex-block {
        width: 60px;
    }
}



.front-process-img {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    padding: 27px;
    -webkit-box-shadow: rgb(214, 212, 228) 2px 2px 3px 0px;
    box-shadow: rgb(214, 212, 228) 2px 2px 3px 0px;
}

@media (max-width: 800px) {
    .front-process-img {
        width: 75px;
        height: 75px;
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .front-process-img {
        width: 60px;
        height: 60px;
        padding: 11px;
    }
}


.front-process-img img {
    width: auto
}

@media (max-width: 800px) {
    .front-process-img img {
        width: 35px;
    }
}



.page-front-process-flex-block p {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 800px) {
    .page-front-process-flex-block p {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .page-front-process-flex-block p {
        font-size: 9px;
    }
}

.page-front-process-arrow {
    margin-top: 60px;
}

@media (max-width: 800px) {
    .page-front-process-arrow {
        margin-top: 25px;
    }
}

@media (max-width: 400px) {
    .page-front-process-arrow {
        margin-top: 23px;
    }
}


.page-front-process-arrow img {
    width: auto;
}

@media (max-width: 800px) and (min-width: 400px) {
    .page-front-process-arrow img {
        width: 25px;
    }
}


@media (min-width: 400px) {
    .mobile-block-img {
        display: none !important;
    }
}


@media (max-width: 400px) {
    .mobile-none-img {
        display: none;
    }
}

@media (max-width: 400px) {
    .mobile-block-img {
        display: block;
    }
}





/* page-banners */

.page-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 13px;
}

@media (max-width: 800px) {
    .page-banners {
        grid-gap: 5px;
    }
}

.page-banners-block {
    width: 100%;
    max-width: 375px;
    border-radius: 5px;
    background-image: url(../images/index/main-page-banners-background.png);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1100px) {
    .page-banners-block {
        margin: 0 auto;
    }
}

@media (max-width:800px) {
    .page-banners-block {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px;
        height: 100px;
    }
}

@media (max-width:500px) {
    .page-banners-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        height: auto;
    }
}




.page-banners-block-img {
    margin-right: 30px;
    margin-top: 25px;
}

@media (max-width:800px) {
    .page-banners-block-img {
        margin-top: 0;
        margin-right: 15px;
    }
}

@media (max-width:500px) {
    .page-banners-block-img {
        height: 60px;
        margin-right: 0;
    }
}

.page-banners-block-img img {
    width: auto;
}

@media (max-width:800px) {
    .page-banners-block-img img {
        width: 50px;
    }
}



.page-banners-block-text p {
    width: auto;
}

@media (max-width:800px) {
    .page-banners-block-text p {
        display: none;
    }
}

.page-banners-block-text h3 {
    min-height: 60px;
}

@media (max-width:800px) {
    .page-banners-block-text h3 {
        min-height: auto;
    }
}

@media (max-width:800px) {
    .page-banners-block-text h3 {
        font-size: 15px;
    }
}



/* page-slider2 */

.page-slider2 {
    margin-top: 25px;
    padding: 15px 15px 0 15px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
}

@media (max-width:800px) {
    .page-slider2 {
        margin-top: 10px;
    }
}



.page-slider2 .owl-next:focus,
.page-slider2 .owl-prev:focus {
    outline: none;
}

.page-slider2 .owl-prev {
    position: absolute;
    top: -35px;
    left: 0;
}

.page-slider2 .owl-next {
    position: absolute;
    top: -35px;
    right: 0;
}

.page-slider2 .owl-dots {
    display: none;
}


.page-slider2 .owl-carousel .owl-item img {
    -o-object-fit: scale-down;
    object-fit: scale-down;
}


/* page-feedback-form */

.page-feedback-form {
    margin-top: 25px;
    padding: 20px 30px 30px 30px;
    background: #91BBEA;
    border-radius: 5px;
    text-align: center;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
}

@media (max-width: 800px) {
    .page-feedback-form {
        margin-top: 10px;
    }
}


.page-feedback-form h2 {
    margin-bottom: 30px;
}

.your-questions-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .your-questions-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}




.your-questions-form .form-group {
    width: 100%;
    max-width: 230px;
    margin: 0;
}

@media (max-width: 800px) {
    .your-questions-form .form-group {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* page-sidebar */


.page-sidebar {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    padding: 20px 0;
}

@media (max-width:1100px) {
    .page-sidebar {
        display: none;
    }
}

.page-sidebar h2 {
    margin-left: 20px;
    margin-bottom: 20px;
}


.page-sidebar-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 79px;
}

.page-sidebar-block:hover {
    background: #91BBEA;
}


.page-sidebar-block:hover .page-sidebar-block-img {
    background: #FFFFFF;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.page-sidebar-block:hover .page-sidebar-block-link2 {
    color: #fff;
}

.page-sidebar-block-link1 {
    padding: 15px;
}

.page-sidebar-block-img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #004171;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.page-sidebar-block-link2 {
    color: #000;
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 33px 0;
}

.page-sidebar-block-link2:hover {
    color: #000;
}





.sidebar-img-1 {
    background-image: url(../images/index/sidebar/white-img-1.png);
}

.page-sidebar-block:hover .sidebar-img-1 {
    background-image: url(../images/index/sidebar/blue-img-1.png);
}

.sidebar-img-2 {
    background-image: url(../images/index/sidebar/white-img-2.png);
}

.page-sidebar-block:hover .sidebar-img-2 {
    background-image: url(../images/index/sidebar/blue-img-2.png);
}


.sidebar-img-3 {
    background-image: url(../images/index/sidebar/white-img-3.png);
}

.page-sidebar-block:hover .sidebar-img-3 {
    background-image: url(../images/index/sidebar/blue-img-3.png);
}


.sidebar-img-4 {
    background-image: url(../images/index/sidebar/white-img-4.png);
}

.page-sidebar-block:hover .sidebar-img-4 {
    background-image: url(../images/index/sidebar/blue-img-4.png);
}

.sidebar-img-5 {
    background-image: url(../images/index/sidebar/white-img-5.png);
}

.page-sidebar-block:hover .sidebar-img-5 {
    background-image: url(../images/index/sidebar/blue-img-5.png);
}

.sidebar-img-6 {
    background-image: url(../images/index/sidebar/white-img-6.png);
}

.page-sidebar-block:hover .sidebar-img-6 {
    background-image: url(../images/index/sidebar/blue-img-6.png);
}

.sidebar-img-7 {
    background-image: url(../images/index/sidebar/white-img-7.png);
}

.page-sidebar-block:hover .sidebar-img-7 {
    background-image: url(../images/index/sidebar/blue-img-7.png);
}


.sidebar-img-8 {
    background-image: url(../images/index/sidebar/white-img-8.png);
}

.page-sidebar-block:hover .sidebar-img-8 {
    background-image: url(../images/index/sidebar/blue-img-8.png);
}


.sidebar-img-9 {
    background-image: url(../images/index/sidebar/white-img-9.png);
}

.page-sidebar-block:hover .sidebar-img-9 {
    background-image: url(../images/index/sidebar/blue-img-9.png);
}

.sidebar-img-10 {
    background-image: url(../images/index/sidebar/white-img-10.png);
}

.page-sidebar-block:hover .sidebar-img-10 {
    background-image: url(../images/index/sidebar/blue-img-10.png);
}

.sidebar-img-11 {
    background-image: url(../images/index/sidebar/white-img-11.png);
}

.page-sidebar-block:hover .sidebar-img-11 {
    background-image: url(../images/index/sidebar/blue-img-11.png);
}

.sidebar-img-12 {
    background-image: url(../images/index/sidebar/white-img-12.png);
}

.page-sidebar-block:hover .sidebar-img-12 {
    background-image: url(../images/index/sidebar/blue-img-12.png);
}


.sidebar-img-13 {
    background-image: url(../images/index/sidebar/white-img-13.png);
}

.page-sidebar-block:hover .sidebar-img-13 {
    background-image: url(../images/index/sidebar/blue-img-13.png);
}


.sidebar-img-14 {
    background-image: url(../images/index/sidebar/white-img-14.png);
}

.page-sidebar-block:hover .sidebar-img-14 {
    background-image: url(../images/index/sidebar/blue-img-14.png);
}

.sidebar-img-15 {
    background-image: url(../images/index/sidebar/white-img-15.png);
}

.page-sidebar-block:hover .sidebar-img-15 {
    background-image: url(../images/index/sidebar/blue-img-15.png);
}

.sidebar-img-16 {
    background-image: url(../images/index/sidebar/white-img-16.png);
}

.page-sidebar-block:hover .sidebar-img-16 {
    background-image: url(../images/index/sidebar/blue-img-16.png);
}



.sidebar-img-17 {
    background-image: url(../images/index/sidebar/white-img-17.png);
}

.page-sidebar-block:hover .sidebar-img-17 {
    background-image: url(../images/index/sidebar/blue-img-17.png);
}

.sidebar-img-18 {
    background-image: url(../images/index/sidebar/white-img-18.png);
}

.page-sidebar-block:hover .sidebar-img-18 {
    background-image: url(../images/index/sidebar/blue-img-18.png);
}

.sidebar-img-19 {
    background-image: url(../images/index/sidebar/white-img-19.png);
}

.page-sidebar-block:hover .sidebar-img-19 {
    background-image: url(../images/index/sidebar/blue-img-19.png);
}







/* footer */


.footer {
    background: #004171;
    margin: 25px 0;
    border-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    padding: 15px 30px;
    color: #fff;
}

@media (max-width: 800px) {
    .footer {
        margin: 10px 0;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 0 15px 25px 15px;
    }
}


.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 1100px) {
    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }
}

.footer-top-block {
    width: 31%;
}

@media (max-width: 1100px) {
    .footer-top-block {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-top-block h3 {
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .footer-top-block h3 {
        margin-top: 15px;
    }
}

@media (max-width: 1100px) {
    .footer-top-block {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-top-block p {
    margin: 0;
}


.footer-top-block-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width:1100px) {
    .footer-top-block-flex {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}





.footer-top-block-flex a {
    color: #fff;
    width: 44%;
    min-height: 20px;
    margin-bottom: 8px;
}

.footer-top-block-flex a:hover {
    color: #fff;
}

.footer-top-block-flex div {
    width: 48%;
    min-height: 35px;
    margin-bottom: 8px;
}



.footer-menu a {
    text-decoration: underline;
    font-size: 13px;
}

.footer-menu a:hover {
    text-decoration: none;
}

.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width:500px) {
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}


.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .footer-bottom a {
        width: 48%;
    }
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom div {
    width: 48%;
}

@media (max-width:500px) {
    .footer-bottom div {
        width: 100%;
    }
}

@media (min-width:1100px) {
    .footer-menu-order {
    text-align: right;
}
}



@media (max-width:500px) {
    .footer-menu-order {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 25px;
        text-align: left;
    }
}




/* modal */

.your-questions-form .modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


.modal-form {
    width: 100%;
}

.modal-form .form-group {
    max-width: 100%;
    margin-bottom: 15px;
}

@media (min-width:576) {
    .modal-dialog {
        max-width: 425px;
    }
}

.modal-header .close:focus {
    outline: none;
}

.modal-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.checkbox-block {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0.25rem;
}

@media (max-width:800px) {
    .checkbox-block {
        margin-right: auto!important;
    }
}

.checkbox-block div {
    margin-left: 5px;
}

.alert {
    margin: 0 auto;
}

/* all-courses.html */

.all-courses {
    margin-top: 25px;
}


.all-courses .page-banners-block {
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}


.all-courses .your-questions-form .form-group {
    max-width: 370px;
}








/* all-courses-grid */

.all-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 12px;
}

@media (max-width: 1100px) {
    .all-courses-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .all-courses-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .all-courses-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 450px) {
    .all-courses-grid {
        grid-gap: 2px;
    }
}



.all-courses-grid-block {
    width: 100%;
    max-width: 100%;
    height: 170px;
    -webkit-box-shadow: rgb(214, 212, 228) 3px 3px 10px 0px;
    box-shadow: rgb(214, 212, 228) 3px 3px 10px 0px;
    background: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    font-size: 11px;
}

@media (max-width:500px) {
    .all-courses-grid-block {
        height: auto;
    }
}


.all-courses-grid-block:hover {
    background: #91BBEA;
}

.all-courses-grid-block:hover .all-courses-grid-block-bottom-img {
    background: #fff;
}










.all-courses-grid-block:hover .courses-img1 {
    background-image: url(../images/index/sidebar/blue-img-1.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img2 {
    background-image: url(../images/index/sidebar/blue-img-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img3 {
    background-image: url(../images/index/sidebar/blue-img-3.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img4 {
    background-image: url(../images/index/sidebar/blue-img-4.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img5 {
    background-image: url(../images/index/sidebar/blue-img-5.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img6 {
    background-image: url(../images/index/sidebar/blue-img-6.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img7 {
    background-image: url(../images/index/sidebar/blue-img-7.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img8 {
    background-image: url(../images/index/sidebar/blue-img-8.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img9 {
    background-image: url(../images/index/sidebar/blue-img-9.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img10 {
    background-image: url(../images/index/sidebar/blue-img-10.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img11 {
    background-image: url(../images/index/sidebar/blue-img-11.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img12 {
    background-image: url(../images/index/sidebar/blue-img-12.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img13 {
    background-image: url(../images/index/sidebar/blue-img-13.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img14 {
    background-image: url(../images/index/sidebar/blue-img-14.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img15 {
    background-image: url(../images/index/sidebar/blue-img-15.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img16 {
    background-image: url(../images/index/sidebar/blue-img-16.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img17 {
    background-image: url(../images/index/sidebar/blue-img-17.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img18 {
    background-image: url(../images/index/sidebar/blue-img-18.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .courses-img19 {
    background-image: url(../images/index/sidebar/blue-img-19.png);
    background-repeat: no-repeat;
    background-position: center;
}










.all-courses-grid-block:hover a {
    color: #fff;
}

.all-courses-grid-block:hover .icon-price {
    background-image: url(../images/all-courses/icon-price-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .icon-clock {
    background-image: url(../images/all-courses/icon-clock-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.all-courses-grid-block:hover .icon-certification {
    background-image: url(../images/all-courses/icon-certification-white.png);
    background-repeat: no-repeat;
    background-position: center;
}



.all-courses-grid-block a {
    color: #000;
}

.all-courses-grid-block-link {
    padding-bottom: 25px;
    display: block;
    font-weight: bold;
    font-size: 13px;
    height: 55px;
    padding: 10px 10px 0px 10px;
}

@media (max-width:450px) {
    .all-courses-grid-block-link {
        font-size: 12px;
    }
}

@media (max-width:450px) {
    .all-courses-grid-block-link {
        height: 50px;
        padding: 5px 5px 10px 5px;
    }
}

.all-courses-grid-block-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px 20px 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width:400px) {
    .all-courses-grid-block-bottom {
        padding: 0 5px 5px 5px;
    }
}

.all-courses-grid-block-bottom-img {
    width: 62px;
    height: 62px;
    background: #004171;
    border-radius: 50%;
    padding: 8px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width:400px) {
    .all-courses-grid-block-bottom-img {
        width: 40px;
        height: 40px;
        background-size: 25px;
    }
}









.courses-img1 {
    background-image: url(../images/index/sidebar/white-img-1.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img2 {
    background-image: url(../images/index/sidebar/white-img-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img3 {
    background-image: url(../images/index/sidebar/white-img-3.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img4 {
    background-image: url(../images/index/sidebar/white-img-4.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img5 {
    background-image: url(../images/index/sidebar/white-img-5.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img6 {
    background-image: url(../images/index/sidebar/white-img-6.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img7 {
    background-image: url(../images/index/sidebar/white-img-7.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img8 {
    background-image: url(../images/index/sidebar/white-img-8.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img9 {
    background-image: url(../images/index/sidebar/white-img-9.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img10 {
    background-image: url(../images/index/sidebar/white-img-10.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img11 {
    background-image: url(../images/index/sidebar/white-img-11.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img12 {
    background-image: url(../images/index/sidebar/white-img-12.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img13 {
    background-image: url(../images/index/sidebar/white-img-13.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img14 {
    background-image: url(../images/index/sidebar/white-img-14.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img15 {
    background-image: url(../images/index/sidebar/white-img-15.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img16 {
    background-image: url(../images/index/sidebar/white-img-16.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img17 {
    background-image: url(../images/index/sidebar/white-img-17.png);
    background-repeat: no-repeat;
    background-position: center;
}

.courses-img18 {
    background-image: url(../images/index/sidebar/white-img-18.png);
    background-repeat: no-repeat;
    background-position: center;
}


.courses-img19 {
    background-image: url(../images/index/sidebar/white-img-19.png);
    background-repeat: no-repeat;
    background-position: center;
}












.all-courses-grid-block-information {
    width: 150px;
    margin-left: 3px;
}

@media (max-width:1000px) {
    .all-courses-grid-block-information {
        max-width: 118px;
    }
}

@media (max-width:650px) and (min-width: 500px) {
    .all-courses-grid-block-information {
        max-width: 150px;
    }
}





.all-courses-grid-block-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 6px;
}

.all-courses-grid-block-right-icon {
    width: 18px;
    height: 18px;
    background-image: url(../images/all-courses/icon-price.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width:400px) {
    .all-courses-grid-block-right-icon {
        margin-right: 5px;
    }
}

.icon-price {
    background-image: url(../images/all-courses/icon-price.png);
    background-repeat: no-repeat;
    background-position: center;
}

.icon-clock {
    background-image: url(../images/all-courses/icon-clock.png);
    background-repeat: no-repeat;
    background-position: center;
}

.icon-certification {
    background-image: url(../images/all-courses/icon-certification.png);
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width:450px) {
    .all-courses-grid-block-right span {
        font-size: 11px;
    }
}



/* services.html */

/* information-block */

.information-block {
    background: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 0px 1px 0px 0px;
    padding: 8px 0 15px 0;
}

.braeadcrumbs-title-block {
    background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    padding: 15px 0 5px 0;
}

@media (max-width:800px) {
    .information-block {
        padding: 10px 0;
    }
}

.braeadcrumbs-title-block h1 {
    padding: 5px 20px 0 20px;
}



@media (max-width:800px) {
    .information-block-mobile-order {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}


.information-block-blue {
    background: #004171;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;

}

@media (max-width:800px) {
    .information-block-blue {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.information-block-blue-block {
    color: #fff;
    font-size: 14px;
    margin-right: 40px;
}

.blue-block-max-width {
    max-width: 550px;
}


@media (max-width:800px) {
    .information-block-blue-block {
        width: 48%;
        margin-bottom: 20px;
        margin-right: 0;
    }
}



.information-block-blue-block span {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}

@media (max-width:800px) {
    .information-block-blue-block span {
        margin-top: 0px;
    }
}

@media (max-width:400px) {
    .information-block-blue-block span {
        font-size: 12px;
    }
}



span.blue-block-small {
    font-weight: normal;
    font-size: 11px;
}

.information-block .blue-links {
    display: block;
    margin: 0 auto;
    width: 240px;
    margin-top: 15px;
    padding: 4px 20px;
}


/* documents-block */

.documents-block {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
}

.information-block-mobile-order {
    margin: 10px 0;
}


@media (max-width:800px) {
    .documents-block {
        margin-top: 10px;
    }
}

.owl-carousel3 {
    padding: 0 60px;
}

.documents-block .owl-prev {
    position: absolute;
    top: 65px;
    left: 25px;
}

.documents-block .owl-prev:focus {
    outline: none;
}


.documents-block .owl-next {
    position: absolute;
    top: 65px;
    right: 25px;
}

.documents-block .owl-next:focus {
    outline: none;
}

.documents-block h3 {
    padding: 0 30px 0 30px;
}

@media (max-width:800px) {
    .documents-block h3 {
        padding: 0 30px 15px 30px;
    }
}

/* academic-plan */

.academic-plan {
    padding: 20px 0 15px 0;
}

.academic-plan h2 {
    text-align: center;
}

.left-td {
    width: 35%;
    text-align: left;
    font-weight: bold;
}

@media (max-width:500px) {
    .left-td {
        width: 70%;
    }
}

.title-td {
    background: #EFF6FF;
    font-weight: bold;
    color: #004171;
}

.last-td {
    color: #004171;
    font-weight: bold;
}



.td-blue-link {
    padding: 0;
}


.td-link {
    background: #70A5E1;
    font-weight: bold;
    display: block;
    color: #fff;
    padding: 8px 13px;
    border-radius: 5px;
    border: 3px solid transparent;
}

@media (max-width:430px) {
    .td-link {
        font-size: 12px;
        padding: 8px 0;
    }
}

.td-link:hover {
    background: #fff;
    color: #70A5E1;
    border: 3px solid #70A5E1;
}






.table-margin-top {
    margin-top: 18px;
}

@media (max-width:500px) {
    .td-mobile-none {
        display: none;
    }
}


/* section.html */


.td-link2 {
    color: #225A84;
    text-decoration: underline;
    display: inline-block;
    margin-top: 3px;
}

.td-link3 {
    color: #004171;
    text-decoration: underline;
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
    margin-top: 5px;
}

.programs {
    padding-top: 20px;
}

.programs h2 {
    text-align: center;
}

@media (max-width:600px) {
    .programs-desktop {
        display: none;
    }
}

.programs-mobile {
    display: none;
}

@media (max-width:600px) {
    .programs-mobile {
        display: block;
    }
}

.programs-mobile-block {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    box-shadow: rgb(214, 212, 228) 1px 1px 4px 0px;
    margin-bottom: 8px;
    padding: 10px;
}

.programs-mobile-block-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}



.programs-mobile-block-flex p {
    margin: 0;
    width: 49%;
    font-weight: bold;
}

@media (max-width:400px) {
    .programs-mobile-block-flex p {
        font-size: 12px;
    }
}

.programs-mobile-block-flex-right {
    width: 49%;
}



.programs-mobile-block-flex-information span {
    padding-left: 10px;
}

.programs-mobile-block-flex .td-link3 {
    width: 49%;
}


/* contacts.html */


@media (max-width:400px) {
    .page-contacts-table {
        font-size: 12px;
    }

    .page-contacts-table td {
        padding: 5px 0;
    }
}

@media (min-width:600px) {
.contacts-page-width {
    width: 27%;
}
}

/* sidebar-about.html */



.sidebar-about .page-sidebar-block-img {
    width: 8px;
    height: 8px;
}

.sidebar-about .page-sidebar-block-link2 {
    padding: 7px 0;
}

.sidebar-about .page-sidebar-block {
    height: auto;
}

/*
.inactive-link {
    pointer-events: none;
}
*/

/* Новые правки */



.header-burger.header-burger-active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: inherit;
    top: 48px;
}



.header-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 20px 20px;
    width: 270px;
    background: #fff;
    z-index: 3;
    height: initial;
    min-height: 100%;
    -webkit-box-shadow: #dacccc 1px 1px 10px 0px;
    box-shadow: #dacccc 1px 1px 10px 0px;
    overflow-y: inherit;
}

.page-sidebar {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.page-front-process-flex {
    margin-bottom: 15px;
}

.page-front-process .orange-links {
    font-size: 19px;
    padding: 4px 25px 7px 26px;
}

.orange-links {
    background: #FA8000;

}

.orange-links:hover {
    color: #ffffff;
    border: 3px solid #d92511;
    background: #FA8000;
}

.page-feedback-form h2 {
    margin-bottom: 8px;
}



/* Страница раздела */

.left-td {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.left-td:hover {
    -webkit-box-shadow: #004171 1px 1px 10px 0px;
    box-shadow: #004171 1px 1px 10px 0px;
}

.td-link3 {
    font-weight: bold;
    color: #fff;
    background: #fa8000;
    border: 3px solid transparent;
    border-radius: 7px;
    text-decoration: none;
}

.td-link3:hover {
    border: 3px solid #d92511;
    color: #fff;
}

.td-link_white {
    background: #fff;
    color: #70A5E1;
    border: 3px solid #70A5E1;
}

/* Страница контактов */


.information-block-blue-block a {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    color: #fff;
}

/* Страница контактов */

.your-questions-form {
    margin-bottom: 15px;
}





