section.site-enterprise {
    padding: 20px 0;
    text-align: center;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .content {
        width: 800px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 25px;


        .site {
            width: 45%;
            padding: 20px;
            margin-bottom: 20px;

            img {
                width: 100%;
                object-fit: contain;
            }

            h1 {
                font-size: 1.5em;
                margin: 10px 0;
                text-align: start;

                &::after {
                    content: ' ';
                    display: block;
                    margin-right: auto;
                    width: 50%;
                    height: 1px;
                    background-color: lightgray;
                }
            }

            p {
                text-align: justify;
                margin: 10px 0;
            }

            iframe {
                width: 100%;
                height: 300px;
                border: 0;
                margin-top: 20px;
            }
        }
    }
}

@media screen and (max-width: 800px) {
    section.site-enterprise {
        .content {
            flex-direction: column;
            gap: 0;

            width: 80%;

            .site {
                width: 100%;
            }
        }
    }
}