.tech-community {
    padding: 60px 0;
}

.tech-community .container {
    display: flex;
}

.tech-community .tech-info {
    background-color: var(--color-bg);
    border-radius: 20px 0 0 20px;
    max-width: 347px;
    width: 100%;
    padding: 60px 40px;
    /* padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px; */
}

.tech-community img {
    display: block;
    width: 100%;
    height: 100%;
    align-items: center;
    border-radius: 0px 20px 20px 0px;
    object-fit: cover;
}

.tech-community h1 {
    font-family: 'Orbitron';
    font-size: 70px;
    color: var(--color-white);
    margin: 0;

}

.tech-community h2 {
    font-family: 'Orbitron';
    font-size: 36px;
    color: var(--color-white);
    margin: 0;
    margin-bottom: 20px;
}

.tech-community p {
    font-family: 'Kanit';
    font-size: 20px;
    line-height: 28px;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 150px;
    font-weight: 200;
}

@media only screen and (max-width: 768px) {
    .tech-community .container {
        flex-direction: column-reverse;
    }

    .tech-community img {
        border-radius: 20px 20px 0 0;
    }

    .tech-community h1{
        font-size: 40px;
    }

    .tech-community h2{
        font-size: 32px;
    }

    .tech-community .tech-info {
        border-radius: 0 0 20px 20px;
        max-width: 100%;
        box-sizing: border-box;
        padding: 40px 20px;
    }

    .tech-community p {
        margin-bottom: 20px;
    }
}