.Exhibit-Profile {
    padding-block: 5%;
    overflow: hidden;

    .container {
        max-width: 1080px;
    }

    p {
        color: red;
    }

    ul {
        place-content: center;


        margin-block: 20px;

        li {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            font-family: "Poppins", Sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #7A7A7A;

            span {
                flex-shrink: 0;
                color: var(--secondry-color);
            }
        }
    }

    img {
        display: block;
        margin-inline: auto;
    }
}