#about {
    max-width: var(--section-max-width);
    margin: 60px 0 0 0;
}

#about #intro-rebrand {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 80px auto;
    gap: 50px;
}
#about #intro-rebrand img {
    height: 130px;
}
#about #intro-rebrand i {
    font-size: 24px;
    color: #aaaaaaa3;
    font-weight: 600;
}
#about .rebrand-text {
    font-family: var(--font-poppins);
    line-height: 1.6;
    font-size: 18px;
    font-weight: 100;
}


@media screen and (max-width: 768px) {
    #about #intro-rebrand {
        flex-direction: column;
        gap: 30px;
    }
    #about #intro-rebrand i {
        rotate: 90deg;
    }
    #about #intro-rebrand img {
        height: 100px;
    }
    #about p {
        font-size: 18px !important;
    }
}