section.title {
    justify-content: left;
    align-items: center;
    margin: auto;
}

.title .info {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;

    text-align: center;
}

section.hashtag-style.title::before {
    content: "#acontece\anafai";
    text-align: left;
    /* left: 50%; */
    /* transform: translateX(-50%); */
}

@media only screen and (max-height: 630px) {
    .yellow section.title {
        min-height: 75vh;
        left: 0%;
    }
}

@media only screen and (max-width: 768px) {
    section.hashtag-style.title::before {
        left: 35%;
        font-size: 5rem;
    }
}


.carousel-caption {
    background-color: var(--color-three);
    margin-bottom: -1.6rem;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    padding-bottom: 2.4rem;

    transition: 0.3s;
}

.carousel-caption:hover {
    background-color: var(--body-color);
}

.carousel-caption a {
    color: var(--body-color) !important;
    transition: 0.3s;

    font-weight: 800;
}

.carousel-caption:hover a {
    color: var(--color-three) !important;
}

.carousel-item img{
    width: 100%;
}

section.blog-posts {
    margin: 3.2rem 0 2.4rem;
    padding: 2.4rem;
}

.blog-posts .row > div + div {
    margin-top: 4.8rem;
}

.blog-posts .row + .row {
    margin-top: 3.6rem;
}

.post {
    text-decoration: none;
}

.post .info {
    margin-top: 1rem;
}

.post .info > * {
    margin: 0;
    color: white;
}

.post .info h3 {
    font-weight: 600;
    transition: 0.3s;

    position: relative;
}

.post:hover h3 {
    color: var(--color-three-gradient);
}

.post .info h3::after {
    content: "";
    width: 0;
    position: absolute;
    background-color: var(--color-three);
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}

.post:hover h3::after {
    width: 100%;
}

.post .image img {
    width: 100%;
}

.post-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
}

div.post-pagination a {
    padding: 1rem;
    /* border: 2px solid var(--color-three); */
    margin: 0 0.32rem;
    text-decoration: none;
    color: #009cff !important;
    transition: 0.3s;
}



.post-pagination .current, .post-pagination a:hover {
    /* color: var(--body-color);
    background-color: var(--color-three); */
    filter: brightness(0.6);
}

@media only screen and (min-width: 768px) {
    .blog-posts .row > div {
        margin-top: 3.2rem;
    }

    .blog-posts .row > div + div {
        margin-top: 3.2rem;
    }

    section.carousel {
        max-width: 800px;
        margin: auto;
    }

    .carousel-caption {
        padding-top: 2rem;
        padding-bottom: 3.2rem;
        max-width: 75%;
    }
}

.doc {
    color: black;
    font-size: 18px;
    transition: 0.2s;
}

.doc:hover {
    color: var(--color-one3);
}

b.bolder {
    font-weight: 1000;
}

h4.doc a {
    color: black !important;
}

h3.title-noticia {
    font-size: 1.3rem;
}

@media only screen and (max-width:512px) {
    div.post-pagination a {
        padding: 2px;
    }
}