.portfolio-text-blue {
    color: var(--blue-navy-light);
}

.portfolio-text-orange {
    color: var(--orange);
}

.portfolio-text-gray {
    color: var(--grey-light);
}

#portfolio-headline {
    height: 400px;
    background: linear-gradient(to right, #ecf2f6ff, #ecf2f600 70%);
}

#portfolio-headline .title {
    font-size: 3rem;
    font-weight: 500;
    z-index: 1;
}

#portfolio-headline .subtitle {
    z-index: 1;
}

#portfolio-headline #circle-left {
    height: 450px;
    width: 450px;
    background-color: #2f327d;
    top: 140px;
    left: -50px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 100) 70%
    );
}

#portfolio-headline #circle-right {
    height: 500px;
    width: 500px;
    background-color: var(--purple-light);
    top: 40%;
    right: -100px;
    transform: translateY(-40%);
}

#portfolio-main .brand-logo {
    width: 50%;
}

#portfolio-main p {
    /* line-height: 32px; */
    text-align: justify;
    color: var(--grey-light);
}

#portfolio-main .link {
    color: white;
    font-weight: 600;
    border: none;
    width: 152px;
    background-color: var(--orange);
    padding: 12px 24px;
    border-radius: 8px;
}
#portfolio-main .link:hover {
    background-color: #d5501a;
}

#portfolio-back-link {
    color: var(--grey-light);
}

#portfolio-back-link img {
    width: 24px;
    aspect-ratio: 1/1;
}
#testimonies .testimonies-container .card {
    border: none;
    box-shadow: 7px 13px 20px 1px #10101014;
}
#testimonies .card .card-body {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}
#testimonies .card .card-body .card-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
#testimonies .card .card-body .card-info {
    gap: 35px;
}
#testimonies .card .card-body .card-info .text h5.text-name {
    margin-bottom: 0;
    color: #101010;
}
#testimonies .card .card-body .card-info .text p.text-position {
    margin-bottom: 0;
    color: #959595;
}
#testimonies .card .card-body p {
    color: #4E4B4B;
}
#testimonies .card .card-body .wrapper-text {
    max-height: 85px;
    overflow: hidden;
}
@media (max-width: 575px) {
    #portfolio-main .brand-logo {
        width: 60%;
    }
}