.about {
    position: relative;
    background-color: white;
    color: black;
    overflow: hidden;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.about p {
    padding-bottom: 1em;
    text-align: justify;
    line-height: 1.6;
    font-size: 1.5rem;
    font: bold;
}

.about img.about-bg-logo {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 45%;
    max-width: 600px;
    height: auto;
    object-fit: contain;

    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.about p.lead-text {
    margin-bottom: 2.5rem;

}

@media (max-width: 768px) {
    .about h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .about img.about-bg-logo {
        width: 70%;
        opacity: 0.1;
    }
}