.banner {
    position: relative;
    z-index: 5;
    padding: 10.625rem 4.75rem 15.625rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.banner::before {
    content: "";
    position: absolute;
    top: -5.813rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(180deg, #04020a 0%, #0b0251 100%);
    opacity: 0.72;
}
.banner-img {
    position: absolute;
    top: -5.813rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 5.8rem);
    object-fit: cover;
    z-index: -2;
}
.banner_title {
    color: white;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.banner_breadcrumbs {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}
.banner_breadcrumbs a {
    color: white;
}
.banner_time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.banner_time svg {
    fill: white;
    width: 1.25rem;
    height: 1.25rem;
}
.banner_time p {
    font-family: "Plus Jakarta Sans", Sans-serif;
    color: white;
    font-size: 1.25rem;
}
/*  */
.content {
    background-color: white;
}
.content_post {
    width: 50%;
    margin: 0 auto;
    padding-top: 2.5rem;
    color: #1e1e1e;
    font-weight: 400;
    text-align: justify;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 1.25rem;
    line-height: 1.4;
    padding-bottom: 3.75rem;
}
.content_post p {
    margin-bottom: 0.875rem;
}
.content_post ul,
.content_post ol {
    padding-left: 2.5rem;
}
.content_post img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.content_post h4,
.content_post h3,
.content_post h2 {
    font-size: 1.75rem;
    font-weight: 700;
}
.content_post h2 {
    color: #213acb;
}
.content_post strongg,
.content_post b {
    font-weight: 700;
}
@media (max-width: 639px) {
    .banner {
        padding: 3.25rem 1.118rem 6.25rem;
    }
    .banner_title {
        font-size: 2.625rem;
        line-height: 1.2;
    }
    .banner_breadcrumbs {
        display: inline-block;
        padding: 0 1.25rem;
    }
    .banner_breadcrumbs p {
        display: inline;
        font-size: 1.125rem;
    }
    .banner_breadcrumbs a {
        font-size: 1.125rem;
    }
    /*  */
    .content_post {
        width: 100%;
        padding: 1.118rem;
        text-align: start;
    }
}
