.wrap-blog-section {
    width: 100%;
}

.blog-section {
    box-sizing: border-box;
    margin: 0px auto 0px auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width:1350px) {
    .blog-section {
        max-width: 1350px;
    }
}

@media (max-width: 1000px) {
    .blog-section {
        width: auto;
    }
}

/***********************************************/
/*                Seccion 1                    */
/***********************************************/
.wrap-blog-section-1 {
    background-image: linear-gradient(#000203 0%, #00345E 85%, #004D89 100%);
}

.blog-section-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 30px;
}

.wrap-blog-section-1 .blog-section-1 h2 {
    width: 100%;
    font-size: clamp(12pt, 4vw + 1rem, 20pt);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    text-align: center;
    color: aliceblue;
    line-height: 1.6em;
    margin: 0 0 20px 0;
    text-shadow: 0px 0px 1px #111111;
}
/***********************************************/
/*       Estructura Seccion all post           */
/***********************************************/
.wrap-blog-section-allpost {
    background-color: transparent;
    padding-top: 80px;
}

.blog-section-allpost {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0px;
}

.blog-section-allpost .sidebar {
    box-sizing: border-box;
    padding: 10px;
    
}

.blog-section-allpost .content-posts {
    grid-column: span 4 / span 4;
    box-sizing: border-box;
    padding: 40px 80px;
}

.blog-section-allpost .content-posts article {
    width: 80%;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 40px;
}
/************************************************/
.blog-section-allpost .sidebar .line-separator {
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    margin: 5px auto 20px auto;
}

.blog-section-allpost .sidebar .space {
    background-color: transparent;
    width: 100%;
    height: 80px;
}

.blog-section-allpost .sidebar h4 {
    font-family: 'headm', serif;
    font-weight: 400;
    color: #555555;
    margin: 0px;
    text-transform: uppercase;
    font-size: 11pt;
}

.blog-section-allpost .sidebar ul {
    padding: 0px;
    margin: 0px;
}

.blog-section-allpost .sidebar ul li {
    margin-bottom: 10px;
}

.blog-section-allpost .sidebar ul li a {
    color: #333333;
    text-decoration: none;
    font-family: 'textm', serif;
    font-size: 10pt;
    transition: .5s all;
}

.blog-section-allpost .sidebar ul li a:hover {
    color: rgb(0,0,153,.5);
}

.blog-section-allpost .sidebar .content-tags {
    width: auto;
    height: auto;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-section-allpost .sidebar .content-tags a {
    cursor: pointer;
    font-family: 'textm', serif;
    font-weight: 300;
    font-size: 10pt;
    border: 1px solid #dddddd;
    padding: 4px 8px;
    border-radius: 4px;
    transition: .5s all;
}

.blog-section-allpost .sidebar .content-tags a:hover {
    border-color: #333333;
}

.blog-section-allpost .sidebar .wrap-article {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    box-sizing: border-box;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    padding-bottom: 10px;
    cursor: pointer;
    transition: 1s all;
}

.blog-section-allpost .sidebar .wrap-article:hover {
    background-color: rgb(0,0,153,.1);
}

.blog-section-allpost .sidebar .wrap-article figure {
    margin: 0px;
    padding: 0px;
    display: block;
    width: auto;
    height: auto;
}

.blog-section-allpost .sidebar .wrap-article figure img {
    width: 60px;
    height: 60px;
}

.blog-section-allpost .sidebar .wrap-article .content-info {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px;
}

.blog-section-allpost .sidebar .wrap-article .content-info h5 {
    margin: 0px;
    font-family: 'headm', serif;
    font-weight: 500;
    color: #333333;
    font-size: 11pt;
}

.blog-section-allpost .sidebar .wrap-article:hover .content-info h5 {
    color: rgb(0,0,153,.8);
}

.blog-section-allpost .sidebar .wrap-article .content-info span {
    margin: 0px;
    font-family: 'textm', serif;
    font-weight: 300;
    color: #666666;
    font-size: 10pt;
}
/****************************************************/
.blog-section-allpost .content-posts article h3 {
    margin: 0px;
    font-family: 'headm', serif;
    font-weight: 400;
    font-size: 20pt;
    color: rgb(0,0,153,.8);
}

.blog-section-allpost .content-posts article .info-post span {
    margin: 0px;
    font-family: 'textm', serif;
    font-weight: 400;
    font-size: 10pt;
    color: #666666;
    margin-right: 20px;
}

.blog-section-allpost .content-posts article figure {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin: 20px 0px 20px 0px;
    padding: 0px;
}

.blog-section-allpost .content-posts article p {
    font-family: 'textm', serif;
    font-weight: 300;
    color: #666666;
}

.blog-section-allpost .content-posts article button {
    cursor: pointer;
    background-color: rgb(0,0,153,.8);
    color: rgb(255,255,255,.8);
    border: none;
    font-family: 'textt', serif;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0,0,0,.3);
    transition: 1s all;
}

.blog-section-allpost .content-posts article button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px rgb(0,0,0,.3);
    color: rgb(255,255,255,1);
}

.wrap-pages {
    padding: 10px;
    box-sizing: border-box;
}

.wrap-pages ul {
    list-style: none;
    display: flex;
    justify-content: left;
    align-items: center;
}

.wrap-pages ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0px;
}

.wrap-pages ul li {
    
}

.wrap-pages ul li a {
    border: 1px solid #dddddd;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #666666;
    font-family: 'textt', serif;
    transition: 1s all;
}

.wrap-pages ul li a:hover {
    border: 1px solid rgb(0,0,153,.8);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(0,0,153,.8);
    font-family: 'textt', serif;
}

.wrap-pages ul li a.active {
    border: 1px solid #333333;
    box-shadow: 0px 0px 5px rgb(0,0,0,.3);
}