header {
    background-color: #012a5c;
}

/**
 * Переопределение Bootstrap стилей
 */

.breadcrumb {
    background-color: transparent;
    padding: 0;
    font-size: .8rem;
}

/**
 * Стили для CK Editor классов
 */

.image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.image-style-align-left {
    float: left;
    margin-right: 1.5em;
}

.image-style-align-right {
    float: right;
    margin-left: 1.5em;
}

figure.image {
    display: table;
    clear: both;
    text-align: center;
}

figure.image img {
    max-width: 100%;
}

.image > figcaption {
    color: #777;
    background-color: #f7f7f7;
    padding: 0.6em;
    font-size: .75em;
    outline-offset: -1px;
}

figure.media > div {
    width: 100%;
}



/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1219px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 959px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
    .display-4 {
        font-size: 1.5rem;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 319px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}


/*==========  Print Method  ==========*/

@media print {

}