.header._bg{
    background: #213C8F;
}
.news._page{
    padding: 40px 0px 100px;
    background: #F0F7FF;
}
.news__main{
    
}
.nav-news {
    flex: 1 1 auto;
    margin-left: 50px;
}
.nav-news__list {
    display: inline-flex;
    column-gap: 30px;
    border-bottom: 1px solid #DFDFDF;
    
}
.nav-news__item {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #90A0B7;
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
}
.nav-news__item._active{
    color: #000000;
}
.nav-news__item._green::after{
    background: #23B767;
}
.nav-news__item._blue::after{
    background: #238AB7;
}
.nav-news__item._red::after{
    background: #B72358;
}
.nav-news__item._green._active{
    color: #23B767;
}
.nav-news__item._blue._active{
    color: #238AB7;
}
.nav-news__item._red._active{
    color: #B72358;
}
.nav-news__item._active::after{
    opacity: 1;
    visibility: visible;
}
.nav-news__item::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #FFCC00;
    border-radius: 6px 6px 0px 0px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.news__cards{
    display: none;
}
.news__cards._active{
    display: grid;
}

.news__image{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    max-width: 386px;
    margin-bottom: 27px;
    padding-bottom: 56.5%;
    transition: all 0.3s ease 0s;
}
.news__img{
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.news__image::after{
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 0px 0px 8px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.news__card-text{
    height: 130px;
}
.news__card._green .news__image::after{
    background: #23B767;
}
.news__card._blue .news__image::after{
    background: #238AB7;
}
.news__card._red .news__image::after{
    background: #B72358;
}


.breadcrums {
    padding: 30px 0px;
    margin-top: 90px;
}
.breadcrums__container {
}
.breadcrums__list {
    display: inline;
}
.breadcrums__item {
    position: relative;
    margin-right: 26px;
}
.breadcrums__item:not(:last-child)::after{
    content: "/";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translate(-50%,-50%);
}
span.breadcrums__link{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.3);
}
a.breadcrums__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
}

.blog-list {
    padding-bottom: 80px;
}
.blog-list__head {
    display: flex;
    align-items: center;
    column-gap: 50px;
}
.blog-list__title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #000000;
}
.blog-list__nav {
}
.nav-blog-list {
}
.nav-blog-list__list {
    display: inline-flex;
    column-gap: 30px;
    border-bottom: 1px solid #DFDFDF;
}
.nav-blog-list__item {
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #90A0B7;
    position: relative;
    cursor: pointer;
}
.nav-blog-list__item._active{
    color: #FFCC00;
}
.nav-blog-list__item._green::after{
    background: #23B767;
}
.nav-blog-list__item._blue::after{
    background: #238AB7;
}
.nav-blog-list__item._red::after{
    background: #B72358;
}
.nav-blog-list__item._green._active{
    color: #23B767;
}
.nav-blog-list__item._blue._active{
    color: #238AB7;
}
.nav-blog-list__item._red._active{
    color: #B72358;
}
.nav-blog-list__item._active::after{
    opacity: 1;
    visibility: visible;
}
.nav-blog-list__item::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #FFCC00;
    border-radius: 6px 6px 0px 0px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.blog-list__blocks {
    margin-top: 30px;
}
.blog-list__block {
    display: none;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
}
.blog-list__block._active{
    display: flex;
}
.blog-list__item {
    flex: 0 0 calc((100% - 30px * 2) / 3);
}
.blog-list__item._green .blog-list__image::after{
    background: #23B767;
}
.blog-list__item._blue .blog-list__image::after{
    background: #238AB7;
}
.blog-list__item._red .blog-list__image::after{
    background: #B72358;
}
.blog-list__image {
    border-radius: 8px;
    overflow: hidden;
    transition: all 1.3s ease 0s;
    position: relative;
    padding-bottom: 56.5%;
    width: 100%;
}
.blog-list__image::after{
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 0px 0px 8px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog-list__image img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.blog-list__body {
    padding-top: 25px;
}
.blog-list__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
}
.blog-list__description {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
}

.blog-list__paggination {
}
.paggination-blog-list {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}
.paggination-blog-list__arrow {
}
.paggination-blog-list__content {
    display: flex;
    column-gap: 10px;
}
.paggination-blog-list__item {
    flex: 0 0 37px;
    height: 37px;
    width: 37px;
    border: 1px solid #90A0B7;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.01em;
    color: #90A0B7;
    transition: all 0.3s ease 0s;
}
.paggination-blog-list__item._more{
    flex: 0 0 auto;
    border: none;
    pointer-events: none;
    width: auto;
    height: auto;
    align-self: flex-end;
}
.paggination-blog-list__item._active{
    border: 2px solid #213C8F;
    border-radius: 5px;
    color: #213C8F;
    font-weight: 600;
}

.blog-page {
    padding-bottom: 40px;
}
.blog-page__container {
}
.blog-page__head {
}
.blog-page__title {
    font-family:'MuseoSans',sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #000000;
}
.blog-page__other {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 5px;
}
.blog-page__date {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
}
.blog-page__category {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFCC00;
}
.blog-page__category._green{
    color: #23B767;
}
.blog-page__category._blue{
    color: #238AB7;
}
.blog-page__category._red{
    color: #B72358;
}
.blog-page__body {
    max-width: 905px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
.blog-page__body h3{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
.blog-page__body > *:not(:last-child){
    margin-bottom: 20px;
}
.blog-page__body img{
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

@media (any-hover:hover){
    .nav-news__item:not(._active):hover{
        text-decoration: underline;
    }
    .nav-blog-list__item:not(._active):hover{
        text-decoration: underline;
    }
    a.breadcrums__link:hover{
        text-decoration: underline;
    }
    .blog-list__item:hover .blog-list__image{
        transform: scale(0.9);
    }
    .paggination-blog-list__item:not(._active):hover{
        color: #6c95ce;
        border-color: #6c95ce;
    }
    .news__card:hover .news__image{
        transform: scale(0.9);
    }
}
@media (max-width: 1250px){
    .breadcrums{
        margin-top: 86px;
    }
    .blog-list__block{
        column-gap: 20px;
    }
    .blog-list__item{
        flex: 0 0 calc((100% - 20px * 2) / 3);
    }
    .news._page{
        padding: 30px 0px 70px;
    }
}
@media (max-width: 991px){
    .news__top{
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .news__title{
        order: 1;
    }
    .news__all{
        order: 2;
    }
    .nav-news{
        order: 3;
        flex: 0 0 100%;
        margin-left: 0;
    }
    .blog-list__body{
        padding-top: 15px;
    }
    .news._page{
        padding: 30px 0px 20px;
    }
}
@media (max-width: 767px){
    .blog-list__head{
        flex-direction: column;
        align-items: stretch;
        row-gap: 20px;
    }
    .blog-list__item{
        flex: 0 0 calc((100% - 20px * 1) / 2);
    }
}
@media (max-width: 478px){
    .nav-news__list{
        column-gap: 10px;
        display: flex;
        justify-content: space-between;
    }
    .nav-news__item{
        font-size: 14px;
        line-height: 20px;
    }
    .nav-blog-list__list{
        column-gap: 10px;
        display: flex;
        justify-content: space-between;
    }
    .nav-blog-list__item{
        font-size: 14px;
        line-height: 20px;
    }
    .blog-list__item{
        flex: 0 0 100%;
    }
    .blog-page__body > *:not(:last-child){
        margin-bottom: 15px;
    }
    .blog-page__title{
        font-size: 28px;
        line-height: 36px;
    }
    .news._page{
        padding: 30px 0px 20px;
    }
}

.rate-item__bottom {
    padding-top: 20px !important;
}