section.about-box {
    padding: 3.75em 0 8em;
}

/* section.about-box .container {
    max-width: 74rem;
} */

.about-box-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: space-between;
}

.about-box-top-title h2 span {
    font-weight: 300;
    font-size: 2.5rem;
}

.about-box-top-title h2 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.about-box-top-subtitle h4 {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 35rem;
}

.about-box-top-subtitle {
    width: fit-content;
    margin-left: auto;
}

.about-box-bottom {
    position: relative;
    width: 100%;
    padding: 2.4rem 2.145rem 12.8rem 2.145rem;
    margin-top: 2.5rem;
    border: 1px solid #000000;
}

.about-box-mini {
    position: absolute;
    min-width: 30rem;
    background-color: #000000;
    color: #fff;
    padding: 2.65rem 12.65rem 2.7rem 3.8rem;
    height: fit-content;
    bottom: -4em;
}

.about-box-mini p {
    font-size: 1.5em;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.about-box-top-title h2:before {
    content: "";
    background: #000;
    width: 2.5rem;
    height: 4px;
    left: -4.5rem;
    top: 2rem;
    position: absolute;
}

@media only screen and (min-width: 768px){
    .about-box-top {
        grid-template-columns: 1fr 1fr;
    }
    .about-box-bottom {
        padding: 3.8rem 4.45rem 9.8rem 4.05rem;
        margin-top: 2.5rem;
    }
    section.about-box .container {
        max-width: 74rem;
    }
}