.title {
    color: black;
    margin-top: 0px;
    font-weight: bold;
}

main {
    padding: 40px 10%;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.paragraph {
    color: #222222;
    text-align: justify;

    .tiret>li {
        list-style: none;
        margin-left: -30px;
    }
}

.space {
    height: 37px;
}

.img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


.fixed-title {
    margin-top: 50px;
    margin-left: 30px;
    position: absolute;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 150px 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

@media (max-width: 480px) {
    .fixed-title {
        margin: 0 30px;
        padding: 0;
        left: 0;
        height: 78px;
        position: static;
        color: black;

        h2 {
            color: black;
        }
    }

    .img {
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 78px;
    }
}

.item {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    margin-bottom: 10px;
    border: 1px #000000 solid;
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s;

    div {
        margin-right: 100px;
    }

    img {
        width: 25px;
    }
}

.item:hover {
    cursor: pointer;
    scale: 1.02;
    color: white;
    background-color: black;

    img {
        filter: brightness(0) invert(1);
    }
}

.container {
    display: flex;
    min-width: 100%;
    gap: 10px;
    padding: 0 40px;

    .section {
        flex: 1;
    }

    .subtitle {
        color: #BB1A21;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;

        svg {
            width: 25px;
            height: 25px;
        }
    }
}

.table-container {
    width: 100%;
    color: #000000;

    .table-header {
        display: flex;
        border-bottom: 2px solid #ddd;
        border-top: 2px solid #ddd;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;

        .name-cell {
            font-weight: normal;
        }

        .post-cell {
            border: none;
        }
    }

    .table-row {
        display: flex;
        border: 1px solid #ddd;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .name-cell {
        flex: 1;
        padding: 12px 15px;
        font-weight: bold;
    }

    .post-cell {
        flex: 3;
        padding: 12px 15px;
        border-left: 1px solid #ddd;
        margin: 10px 0;
    }

    ul {
        margin: 0;
        padding-left: 20px;
    }

    li {
        margin-bottom: 8px;
    }
}