#tech-header {
    width: calc(100% - 34px);
    height: 780px;
    border-radius: 40px 40px 0 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 114px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.90) 100%), #BBB;
}

.tech-header-title {
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 40px;
}

.tech-header-description {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 160%;
}

.tech-section {
    width: 100%;
    margin-top: 120px;
    margin-bottom: 250px;
}

.tech-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 30px;
    justify-items: start;
}

.tech-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 29px;
    text-align: left;
}

.tech-entitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue, #06F);
    margin-top: 14px;
    margin-bottom: 20px;
}

.tech-description {
    color: #EEE;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
}

@media (max-width: 1600px) {

    .tech-title {
        font-size: 2.4vw;
    }

    .tech-entitle {
        font-size: 1.5vw;
    }

    .tech-description {
        font-size: 1.5vw;
    }
}

@media (max-width: 992px) {
    .tech-title {
        margin-top: 15px;
    }

    .tech-entitle {
        margin-top: 8px;
        margin-bottom: 10px;
    }

    .tech-header-title {
        font-size: 4.0vw;
    }

    .tech-header-description {
        font-size: 2.2vw;
    }

    #tech-header {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .tech-section {
        margin-bottom: 100px;
        margin-top: 80px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 30px;
    }

    .tech-title {
        font-size: 1.5rem;
    }

    .tech-entitle {
        font-size: 1rem;
    }

    .tech-description {
        font-size: 1rem;
    }

    #tech-header {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #tech-header {
        height: 300px;
        width: 100vw;
        border-radius: 0;
        margin-top: 70px;
    }

    .tech-section {
        padding: 0;
        margin-top: 50px;
    }

    .tech-header-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .tech-header-description {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .tech-title {
        font-size: 1.5rem;
    }

    .tech-entitle {
        font-size: 0.8rem;
    }

    .tech-description {
        font-size: 0.9rem;
    }

    .tech-description br {
        display: none;
    }
}