.category {
    display: flex;
    padding-bottom: 50px;
    padding-top: 130px;
    max-width: 1368px;
    margin: 0 auto;
}

.category .menu {
    flex: .2;
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    padding: 26px;
    border-radius: 24px;
}

.category .posts {
    flex: .8;
    padding-right: 30px;
}

.blog .articles {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog .articles article {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #fff;
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    position: relative;
    border-radius: 20px;
    padding: 20px;
    font-size: 15px;
}

.blog .articles article img {
    border-radius: 10px;
    width: 100%;
    margin-top: 18px;
    height: auto;
}

.blog .articles article svg {
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 3px;
}

.blog .articles article .head {
    color: #777;
}

.blog .tag_svg {
    transform: rotate(90deg);
    margin-left: 3px;
}

.blog h4 {
    font-size: 18px;
    line-height: 34px;
    margin-top: 15px; 
    max-width: 90%;
    font-weight: 500;
}

.blog article h4 a {
    color: rgb(72, 90, 131);
    transition: all 0.2s ease-in-out 0s;
}

.blog article h4 a:hover {
    color: #0898CB;
    transition: all 0.2s ease-in-out 0s;
}

.blog article p {
    color: #666;
    margin-top: 15px;
    line-height: 31px;
}

.blog a.go {
    color: #0898CB;
    display: block;
    margin-top: 15px;
    font-size: 15px;
}

.blog .menu h5 {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 10px;
}

.blog .menu a {
    color: #666;
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
}

.blog .menu .catChild {
    margin-bottom: 23px;
}

.blog .menu .catChild>div {
    border-bottom: 1px dashed #eee;
}

.blog .menu .catCount {
    float: left;
    position: relative;
    top: 11px;
}

nav {
    background-image: linear-gradient(102deg, #1999e3, #102f7a);
}

nav .menu {
    background: transparent !important;
}

nav .menu:before {
    display: none !important;
}

nav>div .menu>ul>li {
    color: #fff !important;
}

nav>div .menu>ul>li>a {
    color: #fff !important;
}

.withsubmenu>svg path {
    fill: #fff;
}

.title {
    color: #00d2be !important;
}

@media only screen and (max-width: 1368px) { 
    .category.blog {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1200px) { 
    .blog .articles article {
        flex: 0 0 calc((100% - 40px) / 2);
    }
}

@media only screen and (max-width: 600px) { 
    .blog .articles article {
        flex: 0 0 calc((100% - 40px) / 1);
    }
    
    .category.blog {
        flex-direction: column-reverse;
    }
    
    .category .posts {
        padding-right: 0;
    }
    
    .category {
        padding-top: 90px;
    }
    
    .category .menu {
        margin-top: 40px;
    }
}