.section-blog {
    display: flex;
    flex-direction: column;
}

.header-details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    height: 590px;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.267);
}

.bar-header {
    height: 3px;
    border-radius: 3px;
    background: var(--primary-color);
    width: 189px;
}

.title-header {
    font-size: 48px;
    padding-top: 5px;
    font-weight: 500;
    color: white;
    font-family: "Oswald", sans-serif;
}

.sub-header {
    padding-top: 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    color: var(--font-color);
}

.section-post {
    /* padding-top: 97px; */
    padding-bottom: 100px;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.inside-post {
    width: 1759px;
    height: 100%;
    display: flex;
    background: #373737;
    border-radius: 5px;
    padding: 0px 30px;
    /* justify-content: center; */
}

.title-details-suport {
    font-size: 48px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    color: white;
    text-transform: uppercase;
    padding-top: 80px;
    padding-bottom: 32px;
    width: 1759px;

}

.left-side {
    border-right: 1px solid #6B6B6B;
    height: 100%;
    padding: 30px 0px;
}

.right-side {
    height: 100%;
    padding: 30px 0px;
}

.title-right {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
}

.title-left {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
}

.item-first-right{
    color: white;
    font-weight: 600;
    font-size: 20px;  
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "Oswald", sans-serif;

}


.item-right{
    color: var(--font-color);
    font-weight: 500;
    font-size: 18px;  
}

.text-left{
    color: #D4D4D4
    ;
    font-weight: 500;
    font-size: 18px;  
}





/*###################      MOBILE    ###################*/







@media (max-width: 990px) {

    .title-details-suport,
    .inside-post {
        width: 100%;
    }

    .left-side {
        border: none;
    }
}