/* ОБЩИЕ СТИЛИ */
html, body {
    padding: 0;
    margin: 0;
}
a:link, a:hover, a:focus, a:visited {
    color: #395876;
}
.display-5 {
    font-size: 2rem;
}
.display-6 {
    font-size: 1.2rem;
    font-weight: 400;
}
.section-heading {
    text-align: center;
    padding: 20px 0px 10px 0px;
    font-weight: 200;
}
.btn-outline-primary, .btn-outline-primary:focus {
    border: 1px solid #395876;
    color: #395876
}
.btn-outline-primary:hover, .btn-outline-primary:visited {
    background-color: #395876;
    border: 1px solid #395876;
    color: white;
}
.btn-outline-primary:focus, .btn-outline-primary:hover, .btn-outline-primary:active, .btn:focus, .btn:hover, .btn:active {
    box-shadow: none;
}
/* ВЕРХНЕЕ МЕНЮ */
.header__menu {
    background-color: #395876;
}
.header__menu ul {
    max-height: 550px;
    overflow-y: auto;
}
.header__logo img {
    height: 60px;
    padding-left: 10px;
}
.navbar-link-title, .navbar-link-title:visited {
    font-size: 16px;
    color: #FFF;
    text-transform: uppercase;
}
.navbar-link-title:hover, .navbar-link-title:focus {
    color: #CCC;
}
.navbar-collapse-position {
    padding-left: 20px;
}
.nav-item {
    padding: 0px 5px 0px 5px;
}
.dropdown-item, .dropdown-item:hover  {
    color: #395876;
    cursor: pointer;
}
.dropdown-heading {
    text-transform: uppercase;
    font-weight: 500;
}
.navbar-toggler {
    background-image: url('../img/burger-menu-icon.png');
    background-color: none;
    background-size: 50px;
    background-repeat: no-repeat;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.header_labels {
    padding-right: 10px;
}
/* БЛОК О КОМПАНИИ */
.about {
    padding: 0;
    margin-top: 5rem;
}
.about-heading {
    font-weight: 600;
}
.about-text {
    font-weight: 400;
}
/* ПРОДУКЦИЯ И НОВОСТИ */
.card {
    border: 2px solid #395876;
    background-color: #395876;
    min-height: 100%;
}
.card-img-top {
    border-bottom: 1px solid #CCC;
    opacity: 0.85;
}
.card-body {
    background-color: #FFF;
}
.card-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #395876;
}
.card:hover {
    background-color: #395876;
    outline: 1px solid #395876;
    color: white;
    cursor: pointer;
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    -o-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
}
.card-link {
    text-decoration: none;
    color:black;
}
.card-body {
    padding: 0.9rem 1rem 0.7rem 1rem;
}
.news {
    margin-bottom: 40px;
}
.news .card {
    min-height: 100%;
    text-overflow: ellipsis;
}
.news .card-title {
    padding-top: 10px;
    color: #395876;
    font-weight: 500;
}
.news .card-body {
    padding: 5px;
    color: #395876;
}
.collapsed {
    color: white;
    background-color: #465F79;
}
.accordion-button:not(.collapsed) {
    color: white;
    background-color: #465F79;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../img/arrow_up.png');
    transform: none;   
}
.accordion-button::after {
    background-image: url('../img/arrow_down.png');
    transform: none;   
}
.accordion-button:focus {
    border: none;
    box-shadow: none;
}
.no_bullets li {
    padding-left: 0;
    margin-left: -25px;
    list-style-type: none;
}