section.partner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .content {
        width: 800px;

        h1 {
            width: 100%;
            text-align: center;
            margin: 25px 0;
        }
        p {
            width: 100%;
            text-align: justify;
            margin: 20px 0;
            span {
                font-weight: bold;
            }
        }

        div.list-partner {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            margin-top: 80px;
            gap: 25px;

            align-items: center;
            justify-content: center;

            div.partner {
                width: 40%;
                padding: 20px;
                border: 1px solid #ccc;
                border-radius: 5px;
                margin-bottom: 20px;

                img {
                    width: 100%;
                    height: 100px;
                    object-fit: contain;
                }

                h2 {
                    font-size: 1.5em;
                    margin: 10px 0;
                }

                p {
                    text-align: justify;
                    margin: 10px 0;
                }

                a {
                    margin-top: 25px;
                }
            }
        }
    }
}

@media screen and (max-width: 800px) {
    section.partner {
        .content {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            p {
                width: 80%;
            }

            div.list-partner {
                width: 95%;

                div.partner {
                    width: 95%;
                }
            }
        }
    }
}