
/* tech-stack-section start */

#tech-stack {
    justify-content: center;
    gap: 12px;
    margin-bottom: 52px;
}

#tech-stack .nav-link {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #8A8F98;
    padding: 8px 16px;
    border: 1px solid #151616;
}

#tech-stack .nav-link.active,
#tech-stack .show>.nav-link {
    background-color: #F7F8F8;
    color: #08090A;
}

.tech-row-flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 50px;
}

.tech-logo-card {
    border: 1px solid #292A2C;
    width: 103px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: auto;
    background: linear-gradient(180deg, #212226 0%, #101012 100%);
}


@media screen and (max-width: 767px) {
     .tech-row-flex {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }
}

@media screen and (max-width: 575px) {
      #tech-stack {
        margin-bottom: 25px;
    }

    #tech-stack .nav-link {
        font-size: 14px;
    }

    .tech-row-flex {
        row-gap: 18px;
    }
}