* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
}

.section-container {
    margin-top: 140px;
    width: 1420px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: none;
    align-content: baseline;
}

.thread {
    display: flex;
    flex-direction: column;
    color: #000000ad;
    width: 49.3%;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 1px 2px 10px #00000017;
}

.header-thread {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.userinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imageuser {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex: none;
}

.imageuser img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.text-user {
    margin-left: 10px;
}

.text-user a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #000 !important;
}

.text-user p {
    font-size: 11px;
    font-weight: 600;
}

.timingthread span {
    font-size: 11px;
    font-weight: 600;
}

.thread-desc {
    /* padding: 0px 6px; */
}

.thread-desc p {
    font-size: 13px;
    padding: 7px 0 14px;
    color: #00000099;
    line-height: 1.6;
    font-weight: 600;
}

.btnarea {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btnarea button {
    border: 0;
    outline: 0;
    color: #000000ad;
    font-size: 11px;
    font-weight: 600;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnarea button i {
    font-size: 14px;
    opacity: 60%;
    margin-right: 10px;
}

.thread-title {

    color: #000000e0 !important;
    font-weight: 700;
    text-decoration: none;
    /* border-bottom: 1px solid #00000099; */
    font-size: 15px !important;
    display: inline-block !important;
    margin: 15px 0 0 0;
}

.thread-socials {
    display: flex;
    align-items: center;
}

.thread-socials button:nth-child(1) {
    margin-right: 20px;
}

.thread-footer {

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ___--------------------------media queries  */

@media only screen and (max-width:1600px) {
    .section-container {
        width: 1220px;
    }

}

@media only screen and (max-width:1440px) {
    .thread-desc p {
        font-size: 12px;
    }

    .section-container {
        width: 1000px;
    }
}

@media only screen and (max-width:1040px) {
    .thread-desc p {
        font-size: 12px;
    }

    .section-container {
        width: 860px;
    }
}

@media only screen and (max-width:920px) {
    .thread-desc p {
        font-size: 12px;
    }

    .thread {
        width: 100%;
    }

    .section-container {
        width: 96%;
        margin-top: 180px;
    }
}

@media only screen and (max-width:620px) {
    .imageuser {
        width: 30px;
        height: 30px;
    }

    .text-user {
        margin-left: 10px;
    }

    .text-user h3 {
        font-size: 11px;
    }

    .timingthread span {
        font-size: 10px;
    }

    .navlist li a {
        font-size: 12px;
    }
}

@media only screen and (max-width:440px) {
    .section-container {
        width: 100%;
    }
}

/* home page is done  */