#x-about {
    animation: bounceFadeIn 1.2s ease-out forwards;
    margin: 0 20px;
}

#x-about .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    max-width: 820px;
}

#x-about h1 {
    font-weight: bold;
    font-size: 5rem;
    line-height: 1.2;
    margin: 0;
}

#x-about h3 {
    font-weight: bold;
    font-size: 4rem;
    line-height: 1.2;
    margin: 0;
}

#x-about .team {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    max-width: 1278px;
}

#x-about .team img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#x-about .grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#x-about .gradient-text {
    box-decoration-break: clone;
    background-image: linear-gradient(97deg, #0071E3, #0096FF 42%, #35a9ff 74%, #0071E3);
    display: inline-block;
    background-clip: text;
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    -webkit-background-clip: text;
}

#x-about  p{
    color: #86868B;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: .011em;
}

#x-about  p .highlighted{
    color: #1D1D1F;
    font-weight: 600
}

@media (min-width: 768px) {
    #x-about h1 {
        font-size: 9rem;
    }

    #x-about h3 {
        font-size: 7rem;
    }

    #x-about  p{
        font-size: 3rem;
    }

    #x-about .team {
        gap: 70px;
    }

    #x-about .team img {
        width: 190px;
        height: 250px;
    }
}

@media (min-width: 1210px) {
    #x-about .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}