.tags-top {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}
.news-tag-top {
    position: relative;
    padding: 10px 20px;
    background: #eaecf0;
    color: inherit;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}
.news-tag-top.active {
    background: #0c2052;
    color: #fff;
}
.news-tag-top input {
    display: none;
}
.news-tag-top:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    visibility: hidden;
    width: 0;
    height: 0;
    margin-left: -10px;
    pointer-events: none;
    border: solid transparent;
    border-width: 10px;
    border-color: rgba(229, 45, 54, 0);
    border-top-color: #0c2052;
}
.news-tag-top.active:after {
    visibility: visible;
}
.news-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.news-item {
    width: calc((100% - 60px) / 3);
}
.news-item-img {
    display: block;
    height: 270px;
    border-radius: 10px;
    overflow: hidden;
}
.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item-info {
    padding-top: 15px;
}
.news-item-date {
    color: #717171;
    font-size: 14px;
}
.news-item-title {
    font-size: 1.25rem;
    margin: 2px 0 5px 0;
}
.news-item-title a {
    color: #0c2052;
    text-decoration: none;
}
.news-item-title:hover a {
    color: #000;
}
.news-item-intro {
    color: #717171;
}
.news-page__button {
    width: 250px;
    margin: 0 auto;
    cursor: pointer;
}
.article-content {
    margin-top: 30px;
}
.article-wrap {
    margin-top: 20px;
}
.article-img {
    width: 45%;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.article-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.article-date {
    color: #717171;
}
.article-page-tags {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.article-page-tags > a {
    font-size: 15px;
    padding: 5px 15px;
    background: #1c2530;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}
.article-text {
    line-height: 1.5;
    margin-top: 20px;
}
.article-text img {
    width: 100%;
    height: auto;
}
.article-other-wrap {
    margin-top: 100px;
}
.other-news {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 15px;
}
.parent-menu {
    position: relative;
}
.main-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px 35px 15px 15px !important;
    border-radius: 5px;
    box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.12);
}
.parent-menu:hover > .main-submenu {
    display: block;
}
.main-submenu > li:not(:last-child) {
    margin-bottom: 12px;
}
.main-submenu > li > a {
    white-space: nowrap;
}
.news-search-wrap {
    margin-bottom: 15px;
}
.videos-top-form {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
.videos-top-form > input {
    width: 250px;
    padding: 5px 15px;
    border-radius: 0;
    border: 1px solid #d7d7d7;
}
.videos-top-form > input:focus {
    border-color: #e6c060;
}
.videos-top-form button {
    height: auto;
    padding: 8px 25px;
    width: auto;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
@media (max-width:1200px) {
    .tags-top {
        gap: 15px;
    }
    .news-wrap,
    .other-news {
        gap: 20px;
    }
    .news-item {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width:768px) {
    .news-item-img {
        height: 200px;
    }
    .article-img {
        width: 100%;
        float: none;
        margin-right: 0;
    }
}
@media (max-width:550px) {
    .news-item {
        width: 100%;
    }
    .videos-top-form {
        width: 100%;
    }
    .videos-top-form > input {
        width: auto;
        flex-grow: 1;
    }
}